document.form1.submit();
//forml為表單名稱
//在網頁讀取(一開啟)時就傳送表單
<body onload="document.form1.submit();">
//用函式傳送
<script>
function send(){
document.form1.submit();
}
</script>
//html語法 當一選取清單時 就送出表單
<form id="form1" name="form1" method="post" action="show.php">
<select name="select" id="select" onChange="send();">
<option value="1">1</option>
<option value="2">2</option>
</select>
</form>
沒有留言:
張貼留言