我需要找到带有属性path
的绘制SVG中的所有marker-end
个元素。
我试过了:
$('path').attr("marker-end") // Returns undefined
$('path').prop("marker-end") // Returns undefined
更新
此外path
元素not
具有给定属性。
更新2
好的,得到了$('path:not([marker-end])')
答案 0 :(得分:2)
请尝试以下操作:
$('path[marker-end]')
$('path[marker-end=value]")
换句话说,语法是:
$("path[ATTRIBUTE_NAME]")