我有一个简单的单选按钮,用于使用 jQuery .post 将数据异步提交到脚本。单击按钮时,脚本不会越过 .post 行,并且不会返回任何错误。
// this part submits the button click
$(document).ready(function() {
alert('test 1');
$("input:radio").change(function() {
alert('test 2');
$.post('http://google.com/', {'resolution':$(this).val()}, function(data) {
alert('test 3');
});
});
});
html在这里:
<input type='radio' id='radio1' name='resolution' checked/>
<input type='radio' id='radio2' name='resolution' />
有一些额外的 CSS 用于美化这些单选按钮(使它们成为切换按钮)。
半工作示例在这里。
是什么阻止 .post 行工作?(我应该看到一个带有“test 3”的弹出窗口)。