我有一个简单的形式,在那里我试图触发一个Ajax请求,当有人类型的东西有问题。 调试后,我留下了警报,当事件被触发,但它显示了两次,而不管浏览器。 (忽略输入标签的“相对”属性,这是别的东西,除非你认为它的rel属性导致了问题)。
<form class="formBig" name="formRegister" id="formRegister" method="post" action="">
<label class="label" id="locationLabel" for="location">Location</label>
<input class="input" name="location" id="location" type="text" rel="locationLabel" value="" />
</form>
<script type="text/javascript">
$("#location").click(function() {
alert($(this).attr('id'));
});
</script>