代码编辑器:
x
1
<script>
2
function myFunction(){
3
alert("你选中了一些文本");
4
}
5
</script>
6
一些文本: <input type="text" value="Hello world!" onselect="myFunction()">
7
<script>
function myFunction(){
alert("你选中了一些文本");
}
</script>
一些文本: <input type="text" value="Hello world!" onselect="myFunction()">