如现在两个单选按钮:
<input type="radio" name="open_type" value="0" checked> A
<input type="radio" name="open_type" value="1"> B
现需要选择A弹出A对应的value,选择B弹出B对应的value
$("input[name='open_type']").change(function () {
alert($("input[name='open_type']:checked").val());
});