我被分配了一个任务,用户必须选择一个大学校园并单击继续按钮。我唯一无法工作的是,当没有选择单选按钮并单击继续按钮时,应该会出现一条错误消息,指出“您尚未选择大学校园,请再试一次。'
除了这个错误代码,我还有其他一切工作。我似乎无法得到它。出现一条错误消息,说明“未定义”,它来自按钮的单击功能。有人可以帮忙吗?
<html>
<head>
<style>
input, label { line-height: 1.5em; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<form>
<div>
<input type="radio" name="university" value="Ah, we are not on the same site" id="Belfast">
<label for="Belfast">Belfast</label>
</div>
<div>
<input type="radio" name="university" value="Yeah, we are on the same campus" id="Jordanstown">
<label for="Jordanstown">Jordanstown</label>
</div>
<div>
<input type="radio" name="university" value="Ah, we are not on the same site" id="Coleraine">
<label for="Coleraine">Coleraine</label>
</div>
<div>
<input type="radio" name="university" value="Ah, we are not on the same site" id="Magee">
<label for="Magee">Magee</label>
</div>
<div id="log"></div>
</form>
<input type="button" value="Continue" id="click">
</body>
</html>
<script>
$(function () {
$("#click").click(function () {
alert($("input[type=radio]:checked").val());
})
});
</script>