[JS1] 如何嵌入

时间:2014-05-15 15:33:21   收藏:0   阅读:360

 

bubuko.com,布布扣
 1 <html>
 2 <head>
 3 <title>在HTML文档中嵌入JavaScript代码是如何嵌入到HTML文档中的。</title>
 4 <script language="javascript">
 5     <!--
 6     window.defaultStatus="使用HTML标记嵌入JavaScript代码"
 7     function getnews()
 8     {
 9         document.form1.textbox.value = "在HTML文档中使用JavaScript代码"
10     }
11     //-->
12 </script>
13 </head>
14 <body>
15 <center>
16 <h1>使用 JavaScript</h1>
17 <hr>
18 <form name="form1">
19 <input type=text name="textbox" size=40 value="单击按钮查看信息">
20 <br><br>
21 <input type=button value = "查看信息" onclick = "getnews()">
22 </form>
23 </center>
24 </body>
25 </html>
bubuko.com,布布扣

 

[JS1] 如何嵌入,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!