当在“金额”输入中按“ Enter”键时,就会触发此逻辑,但我不认为应该这样做(Chrome中没有)。我该如何防止这种情况发生,如果不能在IE中阻止这种情况,请对其进行处理,以使click事件中的逻辑不会触发。
<html>
<body>
<div id="page">
<div id="financed_amount">
<h1>Financed Amount:</h1>
<input type="text" id="amount" value="" />
</div>
<h1>Finance Options</h1>
<div>
<a id="shareLink" rel="leanModal" name="email" href="#email"></a>
<button id="btnShare" class="share">Share this report</button>
</div>
</div>
</body>
</html>
脚本
$("#btnShare").click(function (e) {
// This logic is firing when pressing "Enter" in the "Amount" input
});
- jQuery的:1.7.2
- IE 9
- (适用于Chrome)