W3Schools 在线编辑工具(TIY) V3.0
编辑的代码:
运行代码 »
©
w3s.com.cn
运行结果窗口大小:
300 x 150
<
html
>
<
head
>
<
script
type
="text/javascript"
>
function
message()
{
alert(
"当您选择输入框中的内容时会触发这个提示框"
)
}
<
/script
>
<
/head
>
<
body
>
<
p
>
请选择输入框中的内容
<
/p
>
<
form
>
<
input
type
="text"
value
="Select this text"
onselect
="message()"
size
="20"
>
<
/form
>
<
/body
>
<
/html
>
<html> <head> <script type="text/javascript"> function message() { alert("当您选择输入框中的内容时会触发这个提示框") } </script> </head> <body> <p>请选择输入框中的内容</p> <form> <input type="text" value="Select this text" onselect="message()" size="20"> </form> </body> </html>