為什麼單選框獲取得val為on怎麼解決?

2022-03-18 17:02:48 字數 381 閱讀 3285

獲取值的方式:

$("input[name='killorder']:checked").val();

$('input:radio:checked').val();

$("input[type='radio']:checked").val();

$(":radio[checked]").each(function(radio){alert($(this).val());

因為jquery的版本不同,方式也不同,但是無論使用上面哪一種值都是on ,

解決辦法:後來發現,input 忘記給value值了加上value值就行了

若有幫助到您,歡迎點選推薦,您的支援是對我堅持最好的肯定

(*^_^*)

Jquery為單選框checkbox繫結單擊事件

一 假設有如下一段html dd id 1 input id checkbox 518 class imagezz name type checkbox value 518 dd var test image check box click function else check all image...

js獲取單選框選中值

喜歡 不喜歡 頁面中有很多應用,每個應用都有自己對應的comment area,因此頁面中會遍歷出很多comment area,所以不能根據document.getelementsbyname isliked 來獲取radios陣列,那麼為了獲取item對應的評價該如何做呢?解決方案 3 獲取該應用...

獲取多菜單選框內容

jquery獲取radio被選中的值 1 2 3 三種方法都可以 input radio checked val input type radio checked val input name rd checked val jquery獲取select被選中的值 option1option opti...