2007年12月5日 星期三

js藉由另一個視窗將資料傳回表單並自動關閉視窗

[form name="form1" action=""]
[input type="text" name="fruit"]
[a href="#" onclick="javascript:open('js/s.html','','width=150,height=160,top=230,left=230')"]option[/a]
[/form]

製作查詢頁面的下拉式選單(另存一個網頁s.html)


s.html 內容
[script type="text/javascript"]
function choice() {
sel = document.forms[0].elements[0];
opener.document.form1.fruit.value =
sel.options[sel.selectedIndex].text;
self.close();
}
[/script]
[form][select onChange="choice()"]
[option]select[/option]
[option]Korean[/option]
[option]Japanese[/option]
[option]French[/option]
[/select][/form]

【下列文章您可能也有興趣】

沒有留言: