javascript(一)

来源:互联网 发布:类似美团能省钱软件 编辑:程序博客网 时间:2024/05/16 19:29

<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    <script type="text/javascript">
        function changeText(){
            var str1=document.getElementById("myDiv");
            str1.innerHTML="hello javascript!";        
        }
    </script>
    <title>index</title>

  </head>
 
  <body>
      <div id="myDiv">
          if you click the button, I will be change
          please do it
      </div>
    <button onclick="changeText();">button</button>
  </body>
</html>

javascript改变页面的内容


原创粉丝点击