你獲取的值的方法之前有沒有見觸發(fā)的條件?比如blur?focus?click?等等。如果沒有的話
成都創(chuàng)新互聯(lián)公司主營軹城網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,重慶APP軟件開發(fā),軹城h5微信小程序定制開發(fā)搭建,軹城網(wǎng)站營銷推廣歡迎軹城等地區(qū)企業(yè)咨詢
他只會頁面剛加載的時候執(zhí)行一次
,
所以就只能獲得一次值了。
獲取單選框的值有三種方式:\x0d\x0a\x0d\x0a1、$('input:radio:checked').val();\x0d\x0a2、$("input[type='radio']:checked").val();\x0d\x0a3、$("input[name='rd']:checked").val();
!DOCTYPE?html
html?lang="en"
head
meta?charset="UTF-8"
meta?name="viewport"?content="width=device-width,?initial-scale=1.0"
meta?http-equiv="X-UA-Compatible"?content="ie=edge"
titleDocument/title
script?src=""/script
/head
body
p
label?for="radio_a"A/label
input?type="radio"?name="edit"?id="radio_a"?value=""
input?type="text"?disabled?/
/p
p
label?for="radio_b"B/label
input?type="radio"?name="edit"?id="radio_b"?value=""
input?type="text"?disabled?/
/p
script?async?defer
$(document).ready(function()?{
$('input[type="radio"]').change(function(e)?{
var?self?=?this
$('input[type="text"]').prop('disabled',?true)
$(self).next().prop('disabled',?false)
$(self).next().focus()
})
})
/script
/body
/html