These solutions(复制如下)无法正常工作,因为输入的value
已预设,需要滚动horizontall ..并且绝对定位的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");
}
在保持输入滚动的同时启用事件的任何建议?
答案 0 :(得分:2)
将其设为readonly
而不是disabled
。