我有以下代码:
<span class="action_bar"
id="dupquickaddchildassetbutton'+'_'+nodeid+'_'+'-1'+'"
style="background-color: rgb(226, 225, 225);
font-size: 10pt;
font-weight: 700;
visibility: hidden;">
<a href="javascript:void(0)" onclick="editchildassetquickmode('+nodeid+',1,-1);">
<img src="/images/chain-symbol-add.jpg" title="Quick connect child node" border="0" width="16">
</a>
</span>
现在我想将此函数-1中的参数更改为实际组ID。 那么,如何选择该锚标记并在参数中更改该值?
答案 0 :(得分:0)
只需使用JQuery创建锚标记的实例并覆盖onclick函数
//select span, and all a inside the span and bind the click event with actual parameter
$("#dupquickaddchildassetbutton a").onclick(editchildassetquickmode('+nodeid+',1,actualGroupId));