我使用了以下自定义选择器
$(div["data-sort-helper='+newId+'"]')
以便我可以选择:<div data-sort-helper="5"></div>
但我得到了
unrecognized expression: div["data-sort-helper=5"]
??
答案 0 :(得分:2)
您的字符串连接不正确,您可以根据需要包装属性值。
$('div[data-sort-helper="' + newId + '"]')
答案 1 :(得分:0)
您的连接错误
$("div[data-sort-helper='"+newId+"']")