赞
踩
code260.jsp
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>javascript</title>
- <script type="text/javascript">
- function greet() {
- var name = document.getElementById("name");
- if (name)
- {
- window.alert("hello " + name.value);
- }
- }
- </script>
- </head>
- <body>
- <input type="text" id="name"><br>
- <input type="button" value="hello" onclick="greet()">
- </body>
- </html>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。