使用jquery按属性删除html元素

时间:2012-11-25 20:08:17

标签: javascript jquery html

我需要删除属性为cursor = "pointer".的元素。我需要用html中的javascript来做 相关项目是<g cursor="pointer"></g>。 我不知道元素在html中有这种形式的原因。

1 个答案:

答案 0 :(得分:6)

您可以使用:

$('g[cursor="pointer"]').remove();