我正在創建一個'我的帳戶頁面作爲較大項目的一部分。我正在使用jquery獲取有關用戶選擇哪個單選按鈕的數據。我不明白爲什麼它不工作,我相信問題是與jquery用來指定何時點擊單選按鈕。單選按鈕不工作的JQuery
JQUERY:
$("input[name=currentTree]").on('change',function(){
var currentTreeId = $(this).val();
alert ('data:' + currentTreeId);
$.post('selectTree.php',{currentTreeId:currentTreeId} ,function(data,status){
alert(data + ' is the current tree');
});
});
$("input[type=radio][name=currentTree]").change(function(){
var currentTreeId = $(this).val();
alert ('data:' + currentTreeId);
$.post('selectTree.php',{currentTreeId:currentTreeId} ,function(data,status){
alert(data + ' is the current tree');
});
});
也一樣會工作點擊[https://jsfiddle.net/b80sa4kx/1/](https://jsfiddle.net/b80sa4kx/1/)。這是不是OP問題 – Rohit
它不工作我剛剛試過這段代碼 –