//下拉選單帶入url參數
<SELECT size=1 name='event_type_co' onChange="onSelected_Form(this.value);">
<?php
$result = mysql_query($SQL);
while($row = mysql__fetch_array($result)){
echo trim("<OPTION value=".$row['job_type_id'].">".trim($row['code_name']))."</OPTION>\n");
}
?>
</SELECT>
<!------------//下拉選單帶入url參數//------------>
<script type="text/javascript" language="javascript">
<!--
function onSelected_Form(value){
var ls_url="";
ls_url="?from_type="+value;
window.location=ls_url;
-->
}
</script>
<!------------//下拉選單帶入url參數//------------>
//檢驗輸入文字
<textarea id="autobi" name="autobi" cols="60" rows="5" onKeyUp="fun_replace(this.value);" onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/^\[+|\]+$|[\[\]\x22\x27]+/ig,'’'));">
</textarea>
<!------------//檢驗輸入文字//------------>
<script>
function fun_replace(value)
{
<!--
// alert(value);
var str_check;
str_check="電算";
var int_pos=0;
int_pos=value.indexOf(str_check);
if (int_pos>0){
alert(int_pos);
value=value.replace('電算','電子計算機中心');
document.frm_1.autobi.value=value;
}
}
-->
</script>
<!------------//檢驗輸入文字//------------>
//Form 送出檢查
<form action='CheckUser.php' name='CheckUser' method='post' onSubmit="return Login_Check(this)">
帳號:<input id="UserID" name="UserID" size="5" type="text" value=""/>
密碼:<input id="UserPWD" name="UserPWD" size="10" type="password" value=""/>
<input type="submit" name="submit" id="submit" value="登入" />
</form>
<!------------//送出檢查//------------>
<SCRIPT language=JavaScript>
<!--
function Login_Check(theForm)
{
if (theForm.UserID.value == "")
{
alert("請在「ID」欄位輸入資料。");
theForm.UserID.focus();
return (false);
}
if (theForm.UserID.value.length > 8)
{
alert("在「ID」欄位,最多請輸入 8 的字元。");
theForm.UserID.focus();
return (false);
}
if (theForm.UserPWD.value == "")
{
alert("請在「密碼」欄位輸入資料。");
theForm.UserPWD.focus();
return (false);
}
return (true);
}
-->
</SCRIPT><!------------//送出檢查//------------>
沒有留言:
張貼留言