使用 jquery 或 javascript 重定向到新博客
我关闭了旧博客,因此我将旧博客重定向到新博客,但如果任何用户来自旧博客,那么他将无法在我们的博客中观看我们的视频。 我使用了
<script language="javascript" type="text/javascript">
window.onload = function java() {
window.location = "http://anirudhagupta.blogspot.com";
}
</script>
但是他像ajax一样重定向所以Silverlight视频对象不起作用所以我如何使用jquery或javascript解决它
I closed my old blog so I redirect our old blog to our new blog but if any user comes from the old blog then he can't watch our video in our blog..
i used
<script language="javascript" type="text/javascript">
window.onload = function java() {
window.location = "http://anirudhagupta.blogspot.com";
}
</script>
But he redirect like a ajax so Silverlight video object is not worked so how can i solve it using jquery or javascript
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不要进行 JS 重定向。这是最糟糕的选择。 JS 重定向并不可靠(如果用户禁用了 JS 怎么办?),它们会破坏浏览器历史记录行为,并且有更好和正确的替代方案。
最好使用以下之一:
重定向(例如:
)
Don't do JS redirects. This is the worst possible option. JS redirects are not reliable (what if the user has diasbled JS?), they break browser history behavior and they have much better and correct alternatives.
Prefereably, use one of these:
<meta>
redirect (such as:<meta http-equiv="REFRESH" content="0;url=http://www.new-domain.com">
)您不应该使用 JavaScript 重定向到您的新博客。有更好的方法可以做到这一点
(即301 永久重定向)。无论如何,视频问题与重定向无关。
you shoulnd't use javascript to redirect to your new blog. there are better ways to do this
(ie. 301 permanent redirect). anyway, the issue with videos is not related to the redirect.
这应该可以解决问题(如果你使用的是 jQuery )
just this should do the trick ( if you are using jQuery )
您发布的代码不是 AJAX 重定向(无论如何,它确实不存在)。 Javascript 重定向对我来说效果很好。我在您的页面上没有看到任何 Flash,但 Silverlight 工作正常。
The code you've posted is not an AJAX redirect (which really doesn't exist, anyway). That Javascript redirect works fine for me. I don't see any Flash on your page, but the Silverlight is working fine.