javascript進行用戶端資料的校正

來源:互聯網
上載者:User
用戶端|資料

 //作者:叨叨
//email:pjzhp@263.net
//用戶端對使用者輸入資料校正
//如果輸入的內容不滿足,則不提交,並且焦點自動跳到該位置。
//比發送以後在伺服器端校正資料要好用的多!

指令碼代碼:

<script language="javascript">
<!--
function Juge(theForm)
{

if (theForm.title.value == "")
{
alert("請輸入標題!");
theForm.title.focus();
return (false);
}
if (theForm.detail.value == "")
{
alert("請輸入內容!");
theForm.detail.focus();
return (false);
}
if (theForm.name.value == "")
{
alert("請輸入作者!");
theForm.name.focus();
return (false);
}
if (theForm.email.value == "")
{
alert("請輸入信箱!");
theForm.email.focus();
return (false);
}

}

-->
</script>

html網頁代碼:

<html>
<head>
<title>文章發布</title>
<link rel="stylesheet" type="text/CSS" href="style.css">
</head>

<body bgcolor=#fafee9>
<center>原創文章投稿處</center>
<br><center><font color=red>此處嚴禁發錶轉載或者抄襲的文章!</font></center>
<form name="form1" method="post" action="pub_ok.php" >
<table width="90%" border="0" cellspacing="1" cellpadding="1" align="center">
<tr>
<td>
您的姓名:<input type=text name=name size=30>
</td>
</tr>
<tr>
<td>
您的信箱:<input type=text name=email size=30>
</td>
</tr>
<tr>
<td>
文章標題:<input type="text" name=title size="50">
</td>
</tr>

<tr>
<td>
文章內容:<br><textarea name=detail style="width=80%;height=180px;"></textarea>
</td>
</tr>
<tr>
<td>
一些說明:<br><textarea name=demo style="width=80%;height=80px;"></textarea>
</td>
</tr>
<tr>
<td><input type="submit" name="pub" value="發布您的作品"></td>
</tr>
</table>
</form>
<p>
</body>
</html>

//取自我網站的原創文學發佈頁面。



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.