jScrollPane和jQuery 1.8.0

更新到jQuery 1.8.0后,jScrollPane会给我这个错误

Uncaught Error: Syntax error,unrecognized expression:
[type=text/javascript],not([type])

在这行:

$("script",elem).filter('[type=text/javascript],not([type])').remove();

谁能帮忙?

谢谢

解决方法

>不是伪选择器,应该在前面加一个:用作:not()
>通过属性名称值过滤使用作为选择器[attr =“value”] – [type =“text / javascript”].

所以应该是 –

.filter('[type="text/javascript"],:not([type])')

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...