案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<form>
2
Select text: <input type="text" value="Hello world!"
3
onselect="alert('You have selected some of the text.')">
4
<br /><br />
5
Select text: <textarea cols="20" rows="5"
6
onselect="alert('You have selected some of the text.')">
7
Hello world!</textarea>
8
</form>
9