$('form').change(function() {
if('input[type=radio]:checked') {
alert('Already Selected');
}
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form method='get' action=''>
<input type="radio" name="radiobutton">
<input type="radio" name="radiobutton">
<input type="radio" name="radiobutton">
</form>
在此form
中,我试图阻止用户在选定的radio
按钮上点击两次,因此我希望每次点击所选alert
时都会发送一条消息radio
1}}按钮。
答案 0 :(得分:1)
所以基于你的普通英语解释的一些事情:
df
<form method='post' action='#' enctype='multipart/form-data'>