如何将一个选择器和事件绑定到单选按钮
我正在编辑这个问题显然我在加载文档时默认选中了“radio2”。之后用户可以选择“radio1”。
我有两部分代码:
选中时处理
if($("#radio2:checked") && $("#somehidden").val()==="ABC") {
//Do some Set of actions
$("#txt1").val("BCD");
$("#txt2").val("ZXY");
}
单击时处理
$("#radio2").bind('click',function(){
if($("#somehidden").val()==="ABC") {
$("#txt1").val("BCD");
$("#txt2").val("ZXY");
}
});
我已经为加载文档编写了代码的第一部分我有相同的操作集和这些操作当我们点击时,我们在代码的第二部分中看到的结果是一样的。我的问题是我必须删除代码的第一部分,因为我已经在点击时具有隐藏值条件。我该如何处理两者? 我正在使用 trigger()
来选择它。我不想那样做。
I am Editing this question Clearly I have "radio2" checked as default on loading the document. After that the user can select "radio1".
I have two parts of code:
Handle when checked
if($("#radio2:checked") && $("#somehidden").val()==="ABC") {
//Do some Set of actions
$("#txt1").val("BCD");
$("#txt2").val("ZXY");
}
Handle When Clicked
$("#radio2").bind('click',function(){
if($("#somehidden").val()==="ABC") {
$("#txt1").val("BCD");
$("#txt2").val("ZXY");
}
});
I have written the first part of the code for on load the document I have same set of actions and these actions appear the same when we click that we have seen in the second part of the code. My question is I have to remove the First part of code why because as I already have the hidden value condition on the click. How can I handle both?
I am using trigger()
to select it. I don't want to do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用
trigger
触发事件。Use
trigger
to trigger the event.试试这个:
Try this:
编辑:从其他回复来看,我可能误解了这个问题。
Edit: Its possible I misinterpreted the question, judging by the other responses.
我不确定这是否是您正在寻找的内容,但它可能会有所帮助:
I'm not sure if this is what you're looking for but it might help: