如何从JSP页面中的按钮调用JavaScript函数

时间:2016-12-19 11:25:40

标签: javascript jsp

    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
        <%@page import="java.util.Map" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Login page</title>
    </head>
    <body>
     <link rel="stylesheet" type="text/css" href="css/login.css"/>
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />

    <form action="LoginS" method="post">  
       <button type="submit"  onclick="javascript:MyFunction();">Login</button>
      <div class="container" style="background-color:#f1f1f1">
        <button type="button" class="cancelbtn">Cancel</button>
        <span class="psw">Forgot <a href="#">password?</a></span>
      </div>

      <script type="text/javascript">
    MyFunction(){
                 alert("java Script");
    }
    </script>
     </form>
    </body>
    </html>

以上是我的代码,我试图从提交按钮onclick()事件中调用JavaScript函数,但它没有显示任何内容。我在代码中做错了吗。

当我点击按钮时没有任何反应。我希望文本框中的字符串值可以打印在控制台上。

1 个答案:

答案 0 :(得分:2)

我做了一些更改,以使您的代码正常工作并打印&#34; java脚本&#34;在控制台中,因为代码中没有任何文本框:)我还在代码中添加了一个文本框,并将其值作为样本打印出来。

我将登录按钮的类型更改为&#34;按钮&#34;并将MyFunction定义为函数。

我还为fiddle做了测试。

<form action="LoginS" method="post">  
    <button type="button"  onclick="javascript:MyFunction()">Login</button>
    <input id="text-box"/>
    <div class="container" style="background-color:#f1f1f1">
        <button type="button" class="cancelbtn">Cancel</button>
        <span class="psw">Forgot <a href="#">password?</a></span>
    </div>

    <script type="text/javascript">
        MyFunction = function(){
            console.log("java Script");
            console.log(document.getElementById("text-box").value);
        }
    </script>
</form>