$("#inputBoxWidth").change(function() {
var curValue = $("#inputBoxWidth").val();
alert(curValue);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form>
<input type="text" id="inputBoxWidth">
</form>
當我按回車鍵在所有瀏覽器我得到的警報功能除了IE以外的工作重點。在IE中,我必須點擊輸入元素以外的地方,這樣輸入就會失去焦點,而不是工作。我需要IE的行爲與其他瀏覽器相同時按下輸入警報彈出窗口顯示當前值。如何做到這一點?
爲什麼不在'form-submit'事件上做呢? – Rayon