onselect:事件会在文本框中的文本被选中时发生
下面是在表单元素可输入文本框中的两种写法
<input type="text" name="txt" value="a" onselect="alert('内容被选中')" />
<input type="text"
name="txt"
value="a" onselect="alert('内容被选中')"></text>
onselect:事件会在文本框中的文本被选中时发生
下面是在表单元素可输入文本框中的两种写法
<input type="text" name="txt" value="a" onselect="alert('内容被选中')" />
<input type="text"
name="txt"
value="a" onselect="alert('内容被选中')"></text>