不调用javascript函数

时间:2013-02-20 07:18:26

标签: java javascript html jsp struts

在下面提到的代码中,当我在“Spellcheck”按钮上打开时。它没有调用javascript funtion.Looking你的积极回应。 谢谢

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html
    xmlns="http://www.w3.org/1999/xhtml">

    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> <%@ taglib
    uri="/WEB-INF/struts-bean.tld" prefix="bean"%> <%@ taglib
    uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> <%@ taglib
    uri="/WEB-INF/struts-logic.tld" prefix="logic"%>

<head>Welcome To struts Application.

<title>Struts</title>

<script language="javascript">

    function input(){       alert("Insie input function)
          var abs = '<%=request.getContextPath()%>/index.do
            System.out.println("Path"+abs);
            alert(abs);   
          document.AccomodationForm.action=abs;
          document.AccomodationForm.submit();   }

</script> </head>

 <body>

    <html:form  method="post" action="/index"> <html:text
    property="username"></html:text> <html:password
    property="password"></html:password> <html:button  value="Spellcheck" 
    property="button" onclick="javascript:input()"></html:button>
    <html:link page="/index.do">Test the Action</html:link> </html:form>


    </body>


    </html>

查看我在浏览器上看到的源代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">







<head>Welcome To struts Application.

<title>Struts</title>

<script language="javascript"> 

    function input(){
        alert('Insie input function');
          var abs = '/MyWork/index.do
            alert(abs);

          document.AccomodationForm.action=abs;
          document.AccomodationForm.submit();
    }

</script>
</head>


<body>

<form name="indexform" method="post" action="/MyWork/index.do;jsessionid=43C03A85FEBE58F375D2165C3E631111">
<input type="text" name="username" value="">
<input type="password" name="password" value="">
<input type="button" name="button" value="antriksh" onclick="input()">
<a href="/MyWork/index.do;jsessionid=43C03A85FEBE58F375D2165C3E631111">Test the Action</a>
</form>


</body>


</html>

问题是它是在按钮中插入名称属性。我不知道为什么?来自你身边的朋友的任何输入。

4 个答案:

答案 0 :(得分:0)

onclick没有网址,因此javascript:部分无关紧要。杀了它。

答案 1 :(得分:0)

为什么你的javascript函数包含 java 代码System.out.println("Path"+abs),并且你的javascript代码有一些错误,请看:

 function input(){      
      alert("Insie input function");
      var abs = '<%=request.getContextPath()%>/index.do';
       alert(abs);   
      document.AccomodationForm.action=abs;
      document.AccomodationForm.submit();   
 }

答案 2 :(得分:0)

我想修复拼写错误可能会使你的代码工作:

function input() {
    //close the String message for the alert function
    alert("Insie input function)";
    //solve the scriptlet problem
    var abs = '<%=request.getContextPath()%>' + '/index.do'
    //THIS IS JAVA CODE, NOT JAVASCRIPT => System.out.println("Path"+abs);
    alert(abs);
    document.forms[0].action=abs;
    document.forms[0].submit();

}

根据其他答案中的建议,移除javascript:代码组件中的<html:button

<html:button  value="Spellcheck"
    property="button" onclick="input()"></html:button>

答案 3 :(得分:0)

关闭单引号将解决问题

var abs ='&lt;%= request.getContextPath()%&gt;' +'/ index.do';

如果您使用Firefox,我们会使用错误控制台(Ctrl + Shift + J)

找到脚本错误