W3Schools 在线编辑工具(TIY) V3.0
编辑的代码:
运行代码 »
©
w3s.com.cn
运行结果窗口大小:
300 x 150
<
html
>
<
body
>
<
form
>
<
input
type
="submit"
accesskey
="s"
id
="submit1"
/
>
<
/form
>
<
p
>
AccessKey for the submit button is:
<
script
type
="text/javascript"
>
x=document.getElementById(
'submit1'
);
document.write(x.accessKey);
<
/script
>
<
/p
>
<
/body
>
<
/html
>
<html> <body> <form> <input type="submit" accesskey="s" id="submit1" /> </form> <p>AccessKey for the submit button is: <script type="text/javascript"> x=document.getElementById('submit1'); document.write(x.accessKey); </script></p> </body> </html>