[問題] 請問高手可以幫忙嗎
我目前在撰寫jsp網頁程式
原先有配合javaScript作ㄧ些前端的資料檢查
例如帳號是否有填或是密碼是否有填
都順利執行
可是後來用dreamweave 套用樣板作美工之後
卻出現這些錯誤
想請問套用樣板的時候有什麼注意的地方呢
不知道有沒有誰可以給我一些方向可以debug呢
程式部份內容
網頁部份:
<form name="loginform" action="LoginMember.jsp" method="post">
<table border="1" class="line" cellspacing="0">
<tr><td bgcolor="yellow" width="300">加入團購</td></tr>
<tr><td align="center">
您必須先註冊並登入XX網<br>會員才能加入團購。<br>
帳號 : <input type="text" size="15" name="account" ><br>
密碼 : <input type="password" size="15" name="password"><br>
<input type="hidden" name="nextPage" value="singleGroupBrowse.jsp?tID=<%=tID%>">
<input type="submit" value="登入" ><br>
--------------------------------------<br>
新使用者?<br>
<a href="register.htm">我要註冊</a>
</td></tr>
</table>
</form>
script部分:
function checkLogin()
{
account = document.loginform.account.value;
password = document.loginform.password.value;
if (account == "")
{
alert("請輸入帳號....");
document.loginform.elements(0).focus();
return false;
}
else if (password == "")
{
alert("請輸入密碼.....");
document.loginform.elements(1).focus();
return false;
}
else //帳號密碼輸入正確 資料送出
document.loginform.submit();
}
錯誤:
出現像是'document.loginform.account'是null或是不是一個物件
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 140.117.74.43
Ajax 近期熱門文章
PTT數位生活區 即時熱門文章