小弟又來插花了,這次一樣用小弟微薄的JS技術,
這是小弟在開發時,所用的方法,
一樣是複製修改的路線,當然有更好的辦法,可以在一起討論!!
以前小弟沒有做過表單驗證的功能,如果有也是用PHP的方式,
把表單資料傳送到php
if($_POST["test"]=="")
{
......
}
.......
不過有找到JS表單驗證後,就比較方便,資料不用在重填
<script type="text/javascript">
<!--
function CheckForm()
{
if (document.form1.test.value.length == '')
{
alert("不得為空!");
document.form1.test.focus();
return false;
}
return true;
}
-->
</script>
<form id="form1" name="form1" method="post" action="" onsubmit="return CheckForm();">
//送出時執行CheckForm()
<label>
<input type="text" name="test" id="test" />
</label>
<label>
<input type="submit" />
</label>
</form>
//不過多的時候就不知道怎麼縮減了
在來就是跳出確認視窗,有時候要防止user誤按,就要跳出一個確認視窗.
<input type=submit name=ok value="送出"
onclick="if(confirm('您確定送出嗎?')) return true;else return false" />
/* 很簡短 在你要要按下的元素裡面添加,
onclick="if(confirm('您確定送出嗎?')) return true;else return false" */
如有錯誤歡迎指導~~!
繼續苦讀JS~~!
果然把太陽大的精神寫到code內了...
可惜沒領悟到泰方丈的絕學
D槽養成術
chingfeng提到:
過多的時候就不知道怎麼
這邊也需要招喚母槽...
在世界中心呼喊D槽