我收到此错误:
Error: Syntax error, unrecognized expression: a[data-toggle-description-length]='toggle'
我的其他js都没有。
但是当我回到1.7.2时,一切正常。
js本身有:
$("a[data-toggle-description-length]='toggle'").click(function(event){
Linker.updateUi(event);
});
答案 0 :(得分:4)
应该是
$("a[data-toggle-description-length='toggle']")
API参考:http://api.jquery.com/attribute-equals-selector/
您的版本在1.7.2中运行的事实很可能是一个错误。