jQuery IE8 问题
IE8 在第 4 行抛出错误。
jQuery('#list script').each(function() {
var script=document.createElement('script');
script.type='text/javascript';
jQuery(script).text(jQuery(this).text()); //Error in IE8 does the field editing
document.body.appendChild(script);
}).remove();
例程中的 jquery 错误:
append: function() {
return this.domManip(arguments, true, function( elem ) {
if ( this.nodeType === 1 ) {
this.appendChild( elem );
}
});
IE8 throws error on 4th line.
jQuery('#list script').each(function() {
var script=document.createElement('script');
script.type='text/javascript';
jQuery(script).text(jQuery(this).text()); //Error in IE8 does the field editing
document.body.appendChild(script);
}).remove();
jquery error in routine:
append: function() {
return this.domManip(arguments, true, function( elem ) {
if ( this.nodeType === 1 ) {
this.appendChild( elem );
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您不必重新创建脚本元素或执行所有显式删除操作。您可以简单地执行以下操作:
You don't have to recreate the script elements or do all of that explicit removing. You can simply do the following:
多使用jquery怎么样...
how about using jquery a bit more...
为什么不直接使用jquery呢?
why don't you use jquery all the way?
猜测这是一个安全异常,因为您没有列出任何内容。
尽管没有问题解释确切的行(在 jquery 例程中)和确切的异常,但这只是在黑暗中刺伤。
您可能正在访问页面域之外的脚本,因此不允许您访问其文本。
这也可能是您创建脚本标记的方式。
我建议更简洁一些:
注意,假设您使用的是 html5,我省略了类型,如果没有,您可以选择将其放在那里
Guessing it is a security exception since you didn't list anything.
Though without the question explaining the exact line (in the jquery routine) and exact exception this is a mere stab in the dark.
It could be that you are accessing a script that is outside the page's domain and therefore will not allow you to access its text.
It could also be the way you create the script tag.
I'd suggest something a little more concise:
Note I left out the type on assuming you are using html5, if not you'll optionally want to put it in there