gpt4 book ai didi

javascript - 如何在一次 jQuery 调用中在两个文本之间切换?

转载 作者:行者123 更新时间:2023-12-01 00:34:22 25 4
gpt4 key购买 nike

假设您有一个 .click() 调用。您可以在 .click() 调用中编写什么代码,以便每次单击所选元素时,都可以更改两个字符串之间的文本。我假设 .toggle().text() 会在这里发挥作用......

最佳答案

尝试以下方法:

$element.bind('click', function() {
$(this).html($(this).html() == 'string1' ? 'string2' : 'string1');
});
<小时/>

编辑 - 2020-01-28

请注意,bind() 现已弃用。从 jQuery 1.7+ 开始,您应该使用 on() 来代替:

$element.on('click', function() {
$(this).text((i, t) => t == 'string1' ? 'string2' : 'string1');
});

关于javascript - 如何在一次 jQuery 调用中在两个文本之间切换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5575529/

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