在IE下,若是在readonly的input裏面鍵入backspace鍵,會觸發history.back(), 用如下jQuery代碼修正之jquery
$("input[readOnly]").keydown(function(e) { e.preventDefault(); });spa