在DW中选择:插入-->表单-->跳转菜单,这是可以生成一个下拉菜单,同时生成一个js代码。例如:
<script type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
<form name="form1" id="form1">
<select name="menu1" onchange="MM_jumpMenu('parent',this,0)">
<option value="http://www.baidu.com">baidu</option>
<option value="http://www.sohu.com">sohu</option>
</select>
</form>
如果要在新窗口中打开,就要用到window.open方法,例如:
<script type="text/javascript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".open('"+selObj.options[selObj.selectedIndex].value+"')");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
<form name="form1" id="form1">
<select name="menu1" onchange="MM_jumpMenu('parent',this,0)">
<option value="http://www.baidu.com">baidu</option>
<option value="http://www.sohu.com">sohu</option>
</select>
</form>
如果在某一个框架中显示该页面就要用到下面的代码了!
<SCRIPT language=javascript>
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
window.open(selObj.options[selObj.selectedIndex].value,'myframe','');
if (restore) selObj.selectedIndex=0;
}
//-->
</SCRIPT>
将“myframe”替换成想要显示的框架名称就行了。如果你想要要跳出新的窗口把myframe改成mmainFrame就可以使用了。
分享到:
相关推荐
– function MM_jumpMenu(targ,selObj,restore){ eval(targ+”.location='”+selObj.options[selObj.selectedIndex].value+”‘”); if (restore) selObj.selectedIndex=0; } –> 2.使用 代码如下: ”yq”>...
在这个"select跳转菜单新窗口"的例子中,我们主要探讨的是如何利用JavaScript来实现一个当用户从下拉菜单中选择特定选项时,新开浏览器窗口并跳转到相应页面的效果。这在很多网站中用于导航菜单或者搜索筛选功能,...
function MM_jumpMenu(targ,selObj,restore){ //v3.0 eval(targ+.location='+selObj.options[selObj.selectedIndex].value+'); if (restore) selObj.selectedIndex=0; } //--> [removed] <select ...
这个代码使用 JavaScript 的函数来实现跳转菜单的功能,通过选择菜单项来跳转到相应的页面。 三、自定义样式 在上述代码中,我们可以通过改变 `<font color='#004080'>` 中的颜色值来改变字体颜色,通过改变 `...
- JavaScript函数`MM_jumpMenu`用于根据用户类型选择跳转到不同的登录页面,展示了基本的客户端脚本交互。 6. **样式和布局**: - 引入了外部CSS文件`style.css`来定义页面样式,确保用户界面的一致性和美观性。...
function MM_jumpMenu(targ,selObj,restore){ eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'"); if (restore) selObj.selectedIndex=0; } var NS IE=document.all; NS=document...
- 页面还包含了一个下拉菜单,允许用户选择登录身份(管理员或学生),并使用JavaScript函数MM_jumpMenu进行页面跳转。 【显示信息】: 这部分代码看起来是为了检查当前用户是否已登录(管理员或学生)。如果没有...
6. **内置组件**:Flash8中的内置组件不包括`JumpMenu`(跳转菜单)。选项D正确。 7. **导入视频**:在Flash中,用户可以导入视频并嵌入到电影中,发布的Flash动画可以包含嵌入的视频,但某些视频格式可能不支持...
10. **时间轴控制函数**:`gotoAndPlay`、`nextFrame`和`play`都是Flash中控制时间轴的函数,用于动画播放。 11. **声音格式支持**:Flash支持MP3和WAV等音频格式,不支持MP4和ASF。 12. **遮罩动画应用**:遮罩...
<select name="jumpMenu"> <option>-- 政府部门 -- <option>item2 <option>item3 <option>item4 <select name="jumpMenu"> <option>-- 下属单位 -- <option>item2 <option>item3 <option>item4 ...