gpt4 book ai didi

jQuery - 切换 .html 文本?

转载 作者:行者123 更新时间:2023-12-03 22:34:18 27 4
gpt4 key购买 nike

为什么这不起作用?

http://jsfiddle.net/PdwJ6/

HTML

<a href="#" id="showMore">Before</a>

JS

$('#showMore').click(function() {

$(this).toggle(
function () {
$(this).html('<a href="#">After</a>');},
function () {
$(this).html('<a href="#">Before</a>');
});
});

最佳答案

Blender 有适当的答案,但我们也可以将您的问题概括为一个简单的 jQuery 插件:

$.fn.toggleText = function(t1, t2){
if (this.text() == t1) this.text(t2);
else this.text(t1);
return this;
};

您的代码将如下所示:

$('#showMore').click(function(){
$(this).toggleText('Before', 'After');
})

关于jQuery - 切换 .html 文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5584010/

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