简要说明:我有上下文菜单,右键单击链接,我已使用以下代码获取了html
thisDiv = target_element.parent().html();
console.log(thisDiv)
是
<a href="http://goo.com" class="sim-row-edit" data-type="link">goo</a>
我如何删除属性“ href”和添加属性action =“ 1004”
答案 0 :(得分:1)
$(".sim-row-edit").removeAttr("href").attr("action","1004");
答案 1 :(得分:1)
使用 removeAttr jQuery函数删除属性。
target_element.parent().removeAttr('href');
用于添加属性 attr 功能。
target_element.parent().attr('action', '1004');
答案 2 :(得分:1)
只需使用removeAttr(“ href”)删除href属性,然后添加新属性attr(“ action”,“ 1004”)。
selector.removeAttr(“ href”)。attr(“ action”,“ 1004”);