gpt4 book ai didi

jquery - jquery 中的按钮文本切换

转载 作者:IT王子 更新时间:2023-10-29 03:26:34 26 4
gpt4 key购买 nike

当我单击“.pushme”按钮时,它会将其文本变为“Don't push me”。当再次单击按钮时,我想再次将文本变为“push me”。我该怎么做?

<html>

<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>

<body>
<button class='pushme'>PUSH ME</button>
<script>
$(".pushme").click(function () {
$(this).text("DON'T PUSH ME");
});
</script>
</body>

</html>

http://jsfiddle.net/DQK4v/

谢谢。

最佳答案

你可以使用text方法:

$(function(){
$(".pushme").click(function () {
$(this).text(function(i, text){
return text === "PUSH ME" ? "DON'T PUSH ME" : "PUSH ME";
})
});
})

http://jsfiddle.net/CBajb/

关于jquery - jquery 中的按钮文本切换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13652835/

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