gpt4 book ai didi

jquery - 如何用我的函数调用替换 onclick 函数调用?

转载 作者:行者123 更新时间:2023-12-01 06:40:47 24 4
gpt4 key购买 nike

我有以下 HTML 代码:

<td align="center" class="shuttleControl"> 
<img src="/i/mydb/icons/shuttle_reload.png" onclick="g_Shuttlep_v61.reset();" alt="Reset" title="Reset"/>
<img src="/i/mydb/icons/shuttle_last.png" onclick="g_Shuttlep_v61.move_all();" alt="Move All" title="Move All"/>
<img src="/i/mydb/icons/shuttle_right.png" onclick="g_Shuttlep_v61.move();" alt="Move" title="Move" />
<img src="/i/mydb/icons/shuttle_left.png" onclick="g_Shuttlep_v61.remove();" alt="Remove" title="Remove" />
<img src="/i/mydb/icons/shuttle_first.png" onclick="g_Shuttlep_v61.remove_all();" alt="Remove All" title="Remove All" />

基于上面的代码,使用 jQuery,我如何替换所有上面的 onclick 调用来代替使用我的 JavaScript 函数 get_Count()

所以我追求的结果是:

<td align="center" class="shuttleControl"> 
<img src="/i/mydb/icons/shuttle_reload.png" onclick="get_Count();" alt="Reset" title="Reset"/>
<img src="/i/mydb/icons/shuttle_last.png" onclick=" get_Count();" alt="Move All" title="Move All"/>
<img src="/i/mydb/icons/shuttle_right.png" onclick=" get_Count();" alt="Move" title="Move" />
<img src="/i/mydb/icons/shuttle_left.png" onclick=" get_Count();" alt="Remove" title="Remove" />
<img src="/i/mydb/icons/shuttle_first.png" onclick=" get_Count();" alt="Remove All" title="Remove All" />
</td>

最佳答案

我会说:

$('img').unbind('click').click(get_Count);

编辑:

嗯,我试过了,但没用。有效的是 .attr('onclick', '')。所以,这样做:

$('.shuttleControl img').attr('onclick', '').click(get_Count);

关于jquery - 如何用我的函数调用替换 onclick 函数调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4504810/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com