我有一個問題,我想添加「檢查」,當我點擊輸入,但我不知道該怎麼辦,這裏是我的jQuery代碼:Jquery - 添加標記「已檢查」輸入
jQuery('#myId div input').click(function(){
jQuery(this).attr('checked', 'checked');
});
這是我的HTML代碼:
<form id="myId">
<div class="grid12-12">
<input type="radio" value="292" id="292" class="required-entry">
<label for="292">Ordonnance.jpg</label>
</div>
</form>
但問題是,如果我這樣做,這是什麼情況,我有這個在我的標籤:
檢查=「選中「
我只希望「選中」在我的標籤這樣
<input type="radio" id="292" value="292" checked>
如果我刪除的jQuery的檢查是這樣的:
jQuery('#myId div input').click(function(){
jQuery(this).attr('', 'checked');
});
我有一個錯誤。
那麼我該怎麼做? 在此先感謝:)
這個答案部分是正確的,我會給予好評這個 – Sherlock