作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
问题是,如果 IE (6.0+) 嵌入了 Flash 内容,并且页面的 url 中某处有 #,那么当 Flash 内容加载时,或者用户与其交互时,那么窗口的标题,更改为 hash 之后的内容。
例如http://adobeflashwebsite.com/index.html#somediv
然后,当用户点击 Flash 内容时,或者很多时候甚至在加载 Flash 内容时,页面标题会更改为“somediv”。
下面是我面临的一个非常具体的案例:
以下是我面临问题的环境:
这里的问题是,无论我尝试使用哪个插件嵌入 flash,我最终都会遇到以下问题
有人可以建议一下,问题可能是什么?它很可能与 sammy.js 有关,因为 iGoogle 没有这个问题。
最佳答案
以下解决方法是(到目前为止)我最接近解决问题的唯一方法:
var isIE11OrGreater = !!(navigator.userAgent.match(/Trident/) && !navigator.userAgent.match(/MSIE/));
if (!isIE11OrGreater) {
var originalTitle = document.title.split("#")[0];
document.attachEvent('onpropertychange', function (evt) {
if(evt.propertyName === 'title' && document.title !== originalTitle) {
setTimeout(function () {
document.title = originalTitle;
}, 1);
}
});
}
//Incase the developer wants to change the title manually, instead of directly using //document.title=newtitle, he will need to use changeTitle(newTitle)
function changeTitle(newTitle)
{
originalTitle = newTitle;
document.title = newtitle;
}
关于jquery - 如果页面的 url 为 '#' ,并且嵌入了 flash/swf,则 IE 标题将更改为 <afterHash>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4562423/
我在 StackOverflow 和其他地方看到了很多与此类似的问题,但没有一个直接解决我的问题。我正在 THREE.js 中使用凸包生成器生成 n 边多面体。我想将方形纹理映射到每个多面体的每个面上
我是一名优秀的程序员,十分优秀!