我想使用该元素的属性更新HTML。例如:
if($("a.edd-fes-action.edit-product-fes").attr("title")=="Edit"){
SomeThingHERE.html("Editer");
}
因此,在这种情况下,如果某个元素具有title属性"编辑",我想将其内部html更改为其他内容。
答案 0 :(得分:1)
您可以使用jQuery' attribute equals selector获取title="Edit"
元素:
$('a.edd-fes-action.edit-product-fes[title="Edit"]').html('html here');