2

我需要删除一个其属性为cursor = "pointer".. 我需要在 html 中使用 javascript 有问题的项目是 this <g cursor="pointer"></g>。我不知道元素在 html 中具有这种形式的原因。

4

1 回答 1

6

你可以使用这个:

$('g[cursor="pointer"]').remove();
于 2012-11-25T20:09:30.413 回答