我正在尝试使用按钮作为开关。如果我点击按钮,value
和id
会发生变化。如果我再次点击该按钮,则会返回原始value
和id
。
原始值可能如下所示:
value="Show all" id="showall"
更改为此值
value="Standard" id="default"
<script>
$(function () {
$("#showall").click(function () {
$("#showall") // change the Value text to Standard on the button
$("#showall") // Change ID value to default on the button
});
$("#default").click(function () {
$("#default") // change value back to the original which is "Show all"
$("#default") // change ID back to original which is "Showall"
});
</script>
答案 0 :(得分:1)
假设此按钮位于某种类型的<div class="container"></div>
内,我们可以处理它的事件(您可以从正文或文档中处理它,但不建议这样做):
$(".container").on("click", "#showall, #default", function(){
var props = this.id === "showall"
? { value:'Standard', id:'default' }
: { value:'Show All', id:'showall' };
$(this).attr( props );
});
答案 1 :(得分:0)
$("#showall").on('click', function () {
$(this).attr({ 'value': 'Standard', 'id': 'default' });
});
$("#default").on('click', function () {
$(this).attr({ 'value': 'Show all', 'id': 'showall' });
});
答案 2 :(得分:0)
为什么要更改按钮的ID? 你可以这样做:
$(function () {
$("#switchButton").click(function(){
if($(this).value == "default"){
$(this).value = "Show all";
// do other stuff
}else if($(this).value == "Show all"){
$(this).value = "default";
// do other stuff
}
});
});
答案 3 :(得分:0)
$("#showall").on('click', function() {
this.id = this.id=='showall' ? 'default' : 'showall';
this.value = this.value=='Standard' ? 'Show All' : 'Standard';
});
答案 4 :(得分:0)
我知道这不是你要问的问题,但如果我们退回到你的问题中,我认为你真正想要的是在两个按钮之间切换,所以我觉得非常易于维护,可以理解,直观,还有很多东西,只需要两个格式正确的按钮,然后显示/隐藏:
<style>
button#default{
display: none;
}
</style>
<button id="showall" value="Show all">Show all</button>
<button id="default" value="Standard">Standard</button>
<script>
function toggleButtons(){
$("button#showall, button#default").toggle();
}
$("button#showall, button#default").click( toggleButtons );
</script>
答案 5 :(得分:0)
您应该使用类切换而不是更改ID。
if (that.hasClass('foo')) {
that.removeClass('foo').addClass('bar').val('bar');
} else {
that.removeClass('bar').addClass('foo').val('foo');
}