当前位置: 技术问答>java相关
下拉框问题
来源: 互联网 发布时间:2015-05-27
本文导语: 在JSP中如何使用下拉框呀,如何在下拉框中选择一项,然后直接跳转到其他页面?? | 响应下拉框的onclick函数,这是个JS问题! function formHandler() { var URL = document.all.form2.site2.options [document....
在JSP中如何使用下拉框呀,如何在下拉框中选择一项,然后直接跳转到其他页面??
|
响应下拉框的onclick函数,这是个JS问题!
function formHandler()
{
var URL = document.all.form2.site2.options
[document.all.form2.site2.selectedIndex].value;
window.open(URL);
}
下拉框
新浪
263在线
ÃÀ¹úÔÚÏß
新东方
function formHandler()
{
var URL = document.all.form2.site2.options
[document.all.form2.site2.selectedIndex].value;
window.open(URL);
}
下拉框
新浪
263在线
ÃÀ¹úÔÚÏß
新东方
|
将楼上修改一下
function formHandler()
{
var URL = document.all.form2.site2.options
[document.all.form2.site2.selectedIndex].value;
if (URL!="")
window.open(URL);
return ;
}
window.open(URL);也可以为window.location=URL ;
function formHandler()
{
var URL = document.all.form2.site2.options
[document.all.form2.site2.selectedIndex].value;
if (URL!="")
window.open(URL);
return ;
}
window.open(URL);也可以为window.location=URL ;
|
下拉框
新浪
263在线
新东方
function formHandler(obj)
{
var URL = obj.value;
if (URL!="")
window.location=URL;
}
|
試試這個:
21cn
sohu
.
.
.
21cn
sohu
.
.
.
|
同意,用onChange事件触发window.location函数,可以转到其它页面,还可传递参数。