HTML 代码:
<select name="options" id="options" style="width: 100%;" size="12">
<option id="optList1" value="1">
1. ABC
</option>
</select>
Javascript:
document.getElementById('optList1').ondblclick = function () {
alert("asf");
};
我在 select 中有选项列表,在示例中只有一项。问题是我需要在双击此选项时打开对话框......它在 Chrome 和 Firefox 中工作正常,问题很常见,在 IE 中不起作用......
任何帮助都非常感谢......在此先感谢......!