關(guān)于select下拉列表傳值給文本框的問題
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
現(xiàn)在的問題是這樣的:下拉列表傳值給文本框時(shí),在IE下文本框可以正常顯示下拉列表傳來的值,而在firefox下文本框只能顯示undefined
代碼如下: <form name="form1" id="form1"> <select name="company" onchange="document.form1.elements['dwaddress'].value=this.options[this.selectedIndex].dz;document.form1.elements['dwcontact'].value=this.options[this.selectedIndex].lxr;document.form1.elements['dwphone'].value=this.options[this.selectedIndex].dh; "> <option value="" dh="" dz="" lxr="" dd="">選擇單位</option> <% set rs=conn.execute("select * from Company") do while not rs.eof Response.Write " <option value='"&rs(0)&"' dz='"&rs(1)&"' lxr='"&rs(2)&"' dh='"&rs(3)&"'> "&rs(0)&" </option> " rs.movenext loop rs.close %> </select> 地址: <input name="dwaddress" id="dwaddress" type="text" style="border:hidden" readonly="true"> 聯(lián)系人: <input name="dwcontact" id="dwcontact" type="text" style="border:hidden;" readonly="true" > 聯(lián)系電話: <input name="dwphone" id="dwphone" type="text" style="border:hidden;" readonly="true" > <input name="shipowner" type="text" id="shipowner" style="border:hidden;" readonly="true"> </form> 麻煩各位幫看一下這個(gè)問題怎樣解決! 該文章在 2010/12/18 13:32:40 編輯過
|
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |