我試圖通過使用submit()jquery函數提交表單並嘗試提醒特定值但卻徒勞地獲取值... 這裏是我的代碼如何知道提交功能是否正在工作與點擊功能
$('.saving_account .list-radio').click(function() {
$('.saving_account .selected_radio').removeClass('selected_radio');
$(this).toggleClass('selected_radio');
$('input[type="radio"]').prop("checked", false);
$(this).find('input[type="radio"]').prop("checked", true);
//submit action
$('form#target').submit(function() {
alert($(this).find('input[type="radio"]').val());
});
// alert($(this).find('input[type="radio"]').val());
});
的jsfiddle網址 https://jsfiddle.net/y3axmsah/1/
您需要首先防止表單提交:'$('f orm#target')。submit(function(e){e.preventDefault(); ....} – skobaljic
[我怎樣才能調試我的JavaScript代碼?](http://stackoverflow.com/questions/988363/how-can-i-debug-my-javascript-code) – Liam
'小提琴.jshell.net/y3axmsah/1/show /:84未捕獲的ReferenceError:onButtonClick沒有定義' – Sherlock