我需要一個幫助。我需要檢查單選按鈕並使用Javascipt/Jquery設置它的值。我正在下面解釋我的代碼。無法使用JavaScript或Jquery檢查單選按鈕
<input type="radio" name="answer_type0" id="answer_type0" value="" onClick="selectScale();">Male
<button type="button" id="btn">Edit</button>
<script >
document.getElementById('btn').onclick=function(){
var qdata='123';
$('#answer_type0[value="' + qdata + '"]').prop('checked', true).trigger('click');
//$('#answer_type0').prop("checked",true);
console.log('checked',$("#answer_type0").prop("checked"));
}
function selectScale(){
console.log('value');
}
</script>
在上面的代碼,當用戶點擊按鈕Edit
單選按鈕應檢查和click
應觸發。但在我看來,並沒有像這樣發生。 Here plunkr存在。請幫助我。
你能說得對嗎? – subhra
在選擇器中,您期望輸入具有值屬性,而不是。 – gcampbell
檢查此[演示](https://jsfiddle.net/ya8z86s7/) – guradio