本文介绍了jquery中的按钮文本切换的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我点击.pushme"按钮时,它的文字变成不要推我".当再次单击按钮时,我想再次将文本转为推我".我该怎么做?
When i click ".pushme" button, it turns its text to "Don't push me". I want to turn the text again to "push me" when button is clicked again. How can i do that?
<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>
谢谢.
推荐答案
可以使用text
方法:
$(function(){
$(".pushme").click(function () {
$(this).text(function(i, text){
return text === "PUSH ME" ? "DON'T PUSH ME" : "PUSH ME";
})
});
})
这篇关于jquery中的按钮文本切换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!