如何为禁用的输入启用事件?

时间:2014-07-26 00:09:50

标签: css input disabled-input

These solutions(复制如下)无法正常工作,因为输入的value已预设,需要滚动horizo​​ntall ..并且绝对定位的div覆盖输入并阻止其滚动..

<span style="position:relative;">
  <input type="text" disabled />
  <div id="textInput" style="position:absolute; left:0; right:0; top:0; bottom:0; cursor: pointer;" ></div>
</span>
document.getElementById("textInput").onclick = function() {
    alert("Input clicked");
}

在保持输入滚动的同时启用事件的任何建议?

1 个答案:

答案 0 :(得分:2)

将其设为readonly而不是disabled