如何在Dreamweaver中做同一张页面的跳转
发布网友
发布时间:2022-09-03 16:26
我来回答
共1个回答
热心网友
时间:2024-11-23 19:24
用跳转菜单就可以实现:
<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>
<!--以上这里是实现跳转的脚本,在dreamweaver中选跳转菜单控件,这个代码就会自动生成-->
<form name="form2" id="form2">
<select name="menu1" onchange="MM_jumpMenu('parent',this,0)">
<option>请选择</option>
<option value="http://kh.cccc.com ">http://sda.cccc.com </option>
</select>
</form>