jquery在ie6,7,8下报错

JQUERY IE error: unexpected call to method or property access 意外地调用了方法或属性访问

意外地调用了方法或属性访问 or unexpected call to method or property access

$('tbody').html(htmlinfo);    //ie下直接插入html内容到一个节点时报错

解决方法:

将html内容添加到一个不同的元素标签里面,如下面的<tbody>

$('table').html('<tbody>' + htmlinfo+ '</tbody>');    //本人使用此种方式
或者
document.title = htmlinfo;    //这种方式也可以,但是个人还是喜欢上面一种
标签: ,
本文连接地址: http://www.fresker.com/old2/archives/594 (转载注明出处)

回复

目前暂无评论

Sorry, 评论已关闭.