欢迎各位兄弟 发布技术文章
这里的技术是共享的
google 谷歌 "jquery radio change event"
监听点击事件,根据不同值做不同回应
1 | var discount=$( "input[name=discount]:checked" ).val(); |
alert($('input[name="button0[wx_menu_type_booltype]"]:checked').val());
alert($("input[name='button0[wx_menu_type_booltype]']:checked").val());
获取当前选中的radio的值
<input type="radio" name="bedStatus" id="allot" checked="checked" value="allot">Allot
<input type="radio" name="bedStatus" id="transfer" value="transfer">Transfer
正确答案
$(document).ready(function()
{
$('input[type=radio][name=bedStatus]').change(function()
//$("input[type='radio'][name='bedStatus']").change(function() //这个肯定是可以的,因为自己亲自做的
{
if (this.value == 'allot')
{
alert("Allot Thai Gayo Bhai");
}
else if (this.value == 'transfer')
{
alert("Transfer Thai Gayo");
}
});
});
来自 http://stackoverflow.com/questions/13152927/how-to-use-radio-on-change-event
<input type="radio" name="testGroup" id="test1" />test1<br/>
<input type="radio" name="testGroup" id="test2" />test2<br/>
<input type="radio" name="testGroup" id="test3" />test3</br>
$(function(){ $('input:radio').change( function(){ alert('changed'); } ); });
$(document).ready(function(){
$("input[name=discount]").each(function(){ $(this).click(function(){ var discount = $(this).val(); if(discount=="0"){ $(".discount").css("display","none"); } if(discount=="1"){ $(".discount").css("display","inline"); } }); }); });
监听点击事件,根据不同值做不同回应
1 | var discount=$( "input[name=discount]:checked" ).val(); |
获取当前选中的radio的值
jquery 监听radio选中,取值
来自 http://www.it610.com/article/1807239.htm
来自 http://www.edbiji.com/doccenter/showdoc/5/nav/769.html
来自 http://www.cnblogs.com/fcq121/archive/2013/05/15/3079286.html