gpt4 book ai didi

javascript - 如何使用切换?

转载 作者:行者123 更新时间:2023-12-02 19:35:08 26 4
gpt4 key购买 nike

<table border=2>
<tr>
<td class="here" one="lorem" two="ipsum"> click </td>
<td class="here" one="aaa" two="bbb"> click </td>
</tr>
</table>

$('.here').click(function(){
$(this).html($(this).attr('one'));
})

http://jsfiddle.net/uzhru/

我如何修改此 javascript 以实现功能切换或其他解决方案?我想 - 如果我单击 TD,则这会显示属性一,如果我下次单击,则会显示属性二、下一个、下两个等等

最佳答案

ocanal 的答案非常有效,但我想我应该补充一点,这也可以通过 toggle 来完成,当给定两个函数时,每次点击都会在它们之间切换:

$(".here").toggle(function() {
$(this).html($(this).attr('one'));
}, function() {
$(this).html($(this).attr('two'));
});

http://jsfiddle.net/7pUS4/

关于javascript - 如何使用切换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11013207/

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