如何更改jquery中的按钮文本 [英] How do I change the button text in jquery

查看:71
本文介绍了如何更改jquery中的按钮文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我点击按钮时,所有按钮文字都被更改。我该怎么做?



我尝试过的事情:







$(凭证).ready(功能(){


$(。showhide)。click(function(){

$(this).parent()。find(。content)。toggle(slow, function(){

if($(this).is(:visible)){

$(。showhide)。text(hide) ;

}

else {

$(。showhide)。text(show);

}





});

});

}) ;

when i click the button all button text are changed.what i do?

What I have tried:



$(document).ready(function(){

$(".showhide").click(function(){
$(this).parent().find(".content").toggle("slow", function(){
if ($(this).is(":visible")) {
$(".showhide").text("hide");
}
else{
$(".showhide").text("show");
}


});
});
});

推荐答案

(文件).ready(function(){


(document).ready(function(){


(。showhide)。click(function(){
(".showhide").click(function(){


(this).parent()。find(。content)。toggle(slow ,function(){

if(
(this).parent().find(".content").toggle("slow", function(){
if (


这篇关于如何更改jquery中的按钮文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆