如何使用jquery更改带有span的锚标记的函数名称

时间:2011-11-09 08:38:18

标签: jquery

我有以下代码:

<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。 那么,如何选择该锚标记并在参数中更改该值?

1 个答案:

答案 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));