Tag Archives: 选择

HTML中select选择菜单跳转“当前窗口”或“新窗口”

select选择菜单的链接方式主要由“onchange”来控制,下面是代码: 在新窗口中打开: <select onchange="window.open(this.options[this.selectedIndex].value)" name="select"> 在当前窗口打开: <select onchange='document.location.href=this.options[this.selectedIndex].value;'> 下面是实际应用中的完整代

Posted in Technology | Tagged , , | Leave a comment