无法识别的表达式选择自定义属性

unrecognized expression selecting custom attribute

我使用了以下自定义 select 或

$(div["data-sort-helper='+newId+'"]')

这样我就可以 select 这个:<div data-sort-helper="5"></div>

但是我得到了

unrecognized expression: div["data-sort-helper=5"] ??

您的字符串连接不正确,如果需要,您可以包装属性值。

$('div[data-sort-helper="' + newId + '"]')

你的连接错误

$("div[data-sort-helper='"+newId+"']")