var paytype = $("input[name='paytype']:checked").val(); alert(paytype);
input元素下名称为paytype的已选择了的元素的值。
其实就是通过jquery获取到表单元素的额值。