程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> myeclipse10.0不支持onClick的return chkData()

myeclipse10.0不支持onClick的return chkData()

編輯:關於JSP

最近在做一個jsp登錄頁面的時候,碰到了一個問題。

<%@ page language="java" contentType="text/html" pageEncoding="utf-8"%>    
 <html>    
 <head>    
          
 <title>管理員登錄頁面</title>    
         
 <script type="text/javascript">    
        function chkData()    
        {    
            if(frmLogin.uername.value=="")    
            {    
                alert("請輸入用戶名。");    
                return false;    
            }    
            else if(frmLogin.userpassword.value=="")    
            {    
                alert("請輸入密碼。");    
                return false;    
            }    
            else    
            {    
                return true;    
            }    
        }    
                
    </script>    
 </head>    
 <body>    
   <center>管理員登錄</center>    
   <form name="frmLogin" action="chkadminlogin.jsp" method="post">    
        <table align="center" border="1">    
            <tr>    
                <td>用戶名:</td>    
                <td><input type="text" name="username"/></td>    
            </tr>    
            <tr>    
                <td>密&nbsp;&nbsp;碼:</td>    
                <td><input type="password" name="userpassword"/></td>    
            </tr>    
            <tr>    
                <td colspan="2" align="center">    
                    <input type="submit" value="登錄" onClick="return chkData();"/>    
                    <input type="reset" value="重置"/>    
                </td>    
            </tr>    
        </table>    
     </form>    
 </body>    
 </html>

當編寫好了後在myeclipse 10.0中總是提示紅色部分錯誤,檢查沒有半點錯誤,到最後原來是因為版本的問題,myeclipse 10.0 的版本很高,但是不穩定,不支持js腳本的return.這可能是個bug吧 沒辦法了,只好下了個8.6版本。記住了 版本越高越不穩定。

本文出自 “趙玉強的博客” 博客,請務必保留此出處http://zhaoyuqiang.blog.51cto.com/6328846/1105345

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved