主题:  二级菜单很难做吗?

xiaojie_5d

职务:普通成员
等级:1
金币:0.0
发贴:19
#12006/5/4 11:44:18
sc.epson.com.cn/service/net/index.asp
这个页面左边的二级菜单是怎么做的。
就是鼠标点“爱普生服务”会出现二级子菜单?这个效果。。如何做到的。请教?



yiliaocheng

职务:普通成员
等级:2
金币:2.0
发贴:631
#22006/5/4 15:32:11
<script>
function zk(){
tbtype1.style.display = "";
tbtype2.style.display = "";
tbtype3.style.display = "";
tbtype4.style.display = "";
tbtype5.style.display = "";

}
function ss()
{
tbtype1.style.display = "none";
tbtype2.style.display = "none";
tbtype3.style.display = "none";
tbtype4.style.display = "none";
tbtype5.style.display = "none";

}
</script>
<table rules='none' border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="183" bgcolor="#749AEC" height="924">
    <tr>
<td bgcolor="#749AEC" valign="top">
<div align="center">
<table cellpadding="0" style="border-collapse: collapse" width="145" bgcolor="#749AEC">
<tr>
<td bgcolor="#749AEC" valign="top">
 <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" id="table1">

    <tr style="CURSOR: hand" onclick=showtb(1) class=td2>
<td width="150" height="25" align="center">
    <p align="left">爱普生服务</td>
</tr>
<tr id=tbtype1 style='display:none'>
<td bgcolor="#cad6eb" width="150" valign="top">
<p style="margin: 4; ">
&nbsp;<a href="#">公司简介</a><br>
&nbsp;<a href="#">服务理念</a><br>
&nbsp;<a href="#">环境理念</a><br>
&nbsp;<a href="#">联系通道</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(2) class=td2>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(2) class=td2>
<td height="25" align="center">
    <p align="left">服务网络</td>
</tr>
<tr id=tbtype2 style='display:none'>
<td bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">服务网络介绍</a><br>
&nbsp;<a href="#">服务网络介绍</a><br>
&nbsp;<a href="#">加入服务网</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(3) class=td2>
<td height="1" align="center" height="25">
    </td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(3) class=td2>
<td align="center" height="25">
    <p align="left">服务项目</td>
</tr>
<tr id=tbtype3 style='display:none'>
<td bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">标准服务</a><br>
&nbsp;<a href="adminright1.asp?action=changepwd">特色服务</a><br>
&nbsp;<font color="#3366cc"><a href="#">客服中心</a></font><br>
&nbsp;<a href="#">耗材信息</a><br>
&nbsp;<a href="#">产品使用常识</a></p></td>
</tr>
<tr>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(4) class=td2>
<td align="center" height="25">
    <p align="left">服务政策</td>
</tr>
<tr id=tbtype4 style='display:none'>
<td height="67" bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">保修信息</a><br>
&nbsp;<a href="#">三包服务承诺</a><br>
&nbsp;<a href="#">维修指南</a></p></td>
</tr>
<tr>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(5) class=td2>
<td align="center" height="28">
    <p align="left">新闻看台</td>
</tr>
<tr id=tbtype5 style='display:none' bgcolor="#cad6eb">
<td><p style="margin: 4; ">
&nbsp;<a href="#">新闻快报</a><br>
&nbsp;<a href="#">媒体转载</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(6) class=td2>
            <td height="25">
            <a href="#"><font color="#3366cc">返回首页</font></a></td>
        </tr>
        <tr id=tbtype6 style='display:none' bgcolor="#cad6eb">
            <td height="25" border="1" bgcolor="#cad6eb">
             <br>&nbsp;<a href="#"><font color="#3366cc">返回首页</font></a></td>
        </tr>
        </table>
</td>
</tr>
</table>



xiaojie_5d

职务:普通成员
等级:1
金币:0.0
发贴:19
#32006/5/5 8:45:17
我还以为是用层做的呢?
楼上所用的代码,我直接复制在body区中,不行。请兄弟看看。



xiaojie_5d

职务:普通成员
等级:1
金币:0.0
发贴:19
#42006/5/5 8:53:53
5D难道没人了吗?



yiliaocheng

职务:普通成员
等级:2
金币:2.0
发贴:631
#52006/5/5 18:37:21
不好意思,兄弟,我忘了加个函数showtb。把下面代码加到javascript里面就可以了:
function showtb(tbnum){whichEl = eval("tbtype" + tbnum);if (whichEl.style.display == "none"{eval("tbtype" + tbnum + ".style.display=\"\";";}else{eval("tbtype" + tbnum + ".style.display=\"none\";";}}
完整代码为:
<script>
function zk(){
tbtype1.style.display = "";
tbtype2.style.display = "";
tbtype3.style.display = "";
tbtype4.style.display = "";
tbtype5.style.display = "";

}
function ss()
{
tbtype1.style.display = "none";
tbtype2.style.display = "none";
tbtype3.style.display = "none";
tbtype4.style.display = "none";
tbtype5.style.display = "none";
}
function showtb(tbnum){whichEl = eval("tbtype" + tbnum);if (whichEl.style.display == "none"{eval("tbtype" + tbnum + ".style.display=\"\";";}else{eval("tbtype" + tbnum + ".style.display=\"none\";";}}
</script>
<table rules='none' border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="183" bgcolor="#749AEC" height="924">
<tr>
<td bgcolor="#749AEC" valign="top">
<div align="center">
<table cellpadding="0" style="border-collapse: collapse" width="145" bgcolor="#749AEC">
<tr>
<td bgcolor="#749AEC" valign="top">
 <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" id="table1">

<tr style="CURSOR: hand" onclick=showtb(1) class=td2>
<td width="150" height="25" align="center">
<p align="left">爱普生服务</td>
</tr>
<tr id=tbtype1 style='display:none'>
<td bgcolor="#cad6eb" width="150" valign="top">
<p style="margin: 4; ">
&nbsp;<a href="#">公司简介</a><br>
&nbsp;<a href="#">服务理念</a><br>
&nbsp;<a href="#">环境理念</a><br>
&nbsp;<a href="#">联系通道</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(2) class=td2>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(2) class=td2>
<td height="25" align="center">
<p align="left">服务网络</td>
</tr>
<tr id=tbtype2 style='display:none'>
<td bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">服务网络介绍</a><br>
&nbsp;<a href="#">服务网络介绍</a><br>
&nbsp;<a href="#">加入服务网</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(3) class=td2>
<td height="1" align="center" height="25">
</td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(3) class=td2>
<td align="center" height="25">
<p align="left">服务项目</td>
</tr>
<tr id=tbtype3 style='display:none'>
<td bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">标准服务</a><br>
&nbsp;<a href="adminright1.asp?action=changepwd">特色服务</a><br>
&nbsp;<font color="#3366cc"><a href="#">客服中心</a></font><br>
&nbsp;<a href="#">耗材信息</a><br>
&nbsp;<a href="#">产品使用常识</a></p></td>
</tr>
<tr>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(4) class=td2>
<td align="center" height="25">
<p align="left">服务政策</td>
</tr>
<tr id=tbtype4 style='display:none'>
<td height="67" bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">保修信息</a><br>
&nbsp;<a href="#">三包服务承诺</a><br>
&nbsp;<a href="#">维修指南</a></p></td>
</tr>
<tr>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(5) class=td2>
<td align="center" height="28">
<p align="left">新闻看台</td>
</tr>
<tr id=tbtype5 style='display:none' bgcolor="#cad6eb">
<td><p style="margin: 4; ">
&nbsp;<a href="#">新闻快报</a><br>
&nbsp;<a href="#">媒体转载</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(6) class=td2>
<td height="25">
<a href="#"><font color="#3366cc">返回首页</font></a></td>
</tr>
<tr id=tbtype6 style='display:none' bgcolor="#cad6eb">
<td height="25" border="1" bgcolor="#cad6eb">
 <br>&nbsp;<a href="#"><font color="#3366cc">返回首页</font></a></td>
</tr>
</table>
</td>
</tr>
</table>



xiaojie_5d

职务:普通成员
等级:1
金币:0.0
发贴:19
#62006/5/8 13:18:55
老大,,是直接把代码插入在body区域中吗?还是不行。。如果你试验成功了,希望你能把页子附上,。谢谢了。改天请你吃饭,,。。



yiliaocheng

职务:普通成员
等级:2
金币:2.0
发贴:631
#72006/5/8 13:22:32
只要把下面代码放到body里你想要的地方就可以了。
<script>
function zk(){
tbtype1.style.display = "";
tbtype2.style.display = "";
tbtype3.style.display = "";
tbtype4.style.display = "";
tbtype5.style.display = "";

}
function ss()
{
tbtype1.style.display = "none";
tbtype2.style.display = "none";
tbtype3.style.display = "none";
tbtype4.style.display = "none";
tbtype5.style.display = "none";
}
function showtb(tbnum){whichEl = eval("tbtype" + tbnum);if (whichEl.style.display == "none"{eval("tbtype" + tbnum + ".style.display=\"\";";}else{eval("tbtype" + tbnum + ".style.display=\"none\";";}}
</script>
<table rules='none' border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="183" bgcolor="#749AEC" height="924">
<tr>
<td bgcolor="#749AEC" valign="top">
<div align="center">
<table cellpadding="0" style="border-collapse: collapse" width="145" bgcolor="#749AEC">
<tr>
<td bgcolor="#749AEC" valign="top">
 <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" id="table1">

<tr style="CURSOR: hand" onclick=showtb(1) class=td2>
<td width="150" height="25" align="center">
<p align="left">爱普生服务</td>
</tr>
<tr id=tbtype1 style='display:none'>
<td bgcolor="#cad6eb" width="150" valign="top">
<p style="margin: 4; ">
&nbsp;<a href="#">公司简介</a><br>
&nbsp;<a href="#">服务理念</a><br>
&nbsp;<a href="#">环境理念</a><br>
&nbsp;<a href="#">联系通道</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(2) class=td2>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(2) class=td2>
<td height="25" align="center">
<p align="left">服务网络</td>
</tr>
<tr id=tbtype2 style='display:none'>
<td bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">服务网络介绍</a><br>
&nbsp;<a href="#">服务网络介绍</a><br>
&nbsp;<a href="#">加入服务网</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(3) class=td2>
<td height="1" align="center" height="25">
</td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(3) class=td2>
<td align="center" height="25">
<p align="left">服务项目</td>
</tr>
<tr id=tbtype3 style='display:none'>
<td bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">标准服务</a><br>
&nbsp;<a href="adminright1.asp?action=changepwd">特色服务</a><br>
&nbsp;<font color="#3366cc"><a href="#">客服中心</a></font><br>
&nbsp;<a href="#">耗材信息</a><br>
&nbsp;<a href="#">产品使用常识</a></p></td>
</tr>
<tr>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(4) class=td2>
<td align="center" height="25">
<p align="left">服务政策</td>
</tr>
<tr id=tbtype4 style='display:none'>
<td height="67" bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">保修信息</a><br>
&nbsp;<a href="#">三包服务承诺</a><br>
&nbsp;<a href="#">维修指南</a></p></td>
</tr>
<tr>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(5) class=td2>
<td align="center" height="28">
<p align="left">新闻看台</td>
</tr>
<tr id=tbtype5 style='display:none' bgcolor="#cad6eb">
<td><p style="margin: 4; ">
&nbsp;<a href="#">新闻快报</a><br>
&nbsp;<a href="#">媒体转载</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(6) class=td2>
<td height="25">
<a href="#"><font color="#3366cc">返回首页</font></a></td>
</tr>
<tr id=tbtype6 style='display:none' bgcolor="#cad6eb">
<td height="25" border="1" bgcolor="#cad6eb">
 <br>&nbsp;<a href="#"><font color="#3366cc">返回首页</font></a></td>
</tr>
</table>
</td>
</tr>
</table>



xiaojie_5d

职务:普通成员
等级:1
金币:0.0
发贴:19
#82006/5/8 14:17:10
你有email吗?实在不行。我把页子传给你看一下。或者别的什么联系方式。只能怪自己悟性差了。对JS不大懂。



yiliaocheng

职务:普通成员
等级:2
金币:2.0
发贴:631
#92006/5/8 14:38:34
我的资料都公布了,你可以看到的。



xiaojie_5d

职务:普通成员
等级:1
金币:0.0
发贴:19
#102006/5/8 14:45:28
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>

</head>

<body>
<script>
function zk(){
tbtype1.style.display = "";
tbtype2.style.display = "";
tbtype3.style.display = "";
tbtype4.style.display = "";
tbtype5.style.display = "";

}
function ss()
{
tbtype1.style.display = "none";
tbtype2.style.display = "none";
tbtype3.style.display = "none";
tbtype4.style.display = "none";
tbtype5.style.display = "none";
}
function showtb(tbnum){whichEl = eval("tbtype" + tbnum);if (whichEl.style.display == "none"{eval("tbtype" + tbnum + ".style.display=\"\";";}else{eval("tbtype" + tbnum + ".style.display=\"none\";";}}
</script>
<table rules='none' border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="183" bgcolor="#749AEC" height="924">
<tr>
<td bgcolor="#749AEC" valign="top">
<div align="center">
<table cellpadding="0" style="border-collapse: collapse" width="145" bgcolor="#749AEC">
<tr>
<td bgcolor="#749AEC" valign="top">
 <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" id="table1">

<tr style="CURSOR: hand" onclick=showtb(1) class=td2>
<td width="150" height="25" align="center">
<p align="left">爱普生服务</td>
</tr>
<tr id=tbtype1 style='display:none'>
<td bgcolor="#cad6eb" width="150" valign="top">
<p style="margin: 4; ">
&nbsp;<a href="#">公司简介</a><br>
&nbsp;<a href="#">服务理念</a><br>
&nbsp;<a href="#">环境理念</a><br>
&nbsp;<a href="#">联系通道</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(2) class=td2>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(2) class=td2>
<td height="25" align="center">
<p align="left">服务网络</td>
</tr>
<tr id=tbtype2 style='display:none'>
<td bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">服务网络介绍</a><br>
&nbsp;<a href="#">服务网络介绍</a><br>
&nbsp;<a href="#">加入服务网</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(3) class=td2>
<td height="1" align="center" height="25">
</td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(3) class=td2>
<td align="center" height="25">
<p align="left">服务项目</td>
</tr>
<tr id=tbtype3 style='display:none'>
<td bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">标准服务</a><br>
&nbsp;<a href="adminright1.asp?action=changepwd">特色服务</a><br>
&nbsp;<font color="#3366cc"><a href="#">客服中心</a></font><br>
&nbsp;<a href="#">耗材信息</a><br>
&nbsp;<a href="#">产品使用常识</a></p></td>
</tr>
<tr>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(4) class=td2>
<td align="center" height="25">
<p align="left">服务政策</td>
</tr>
<tr id=tbtype4 style='display:none'>
<td height="67" bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">保修信息</a><br>
&nbsp;<a href="#">三包服务承诺</a><br>
&nbsp;<a href="#">维修指南</a></p></td>
</tr>
<tr>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(5) class=td2>
<td align="center" height="28">
<p align="left">新闻看台</td>
</tr>
<tr id=tbtype5 style='display:none' bgcolor="#cad6eb">
<td><p style="margin: 4; ">
&nbsp;<a href="#">新闻快报</a><br>
&nbsp;<a href="#">媒体转载</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(6) class=td2>
<td height="25">
<a href="#"><font color="#3366cc">返回首页</font></a></td>
</tr>
<tr id=tbtype6 style='display:none' bgcolor="#cad6eb">
<td height="25" border="1" bgcolor="#cad6eb">
 <br>&nbsp;<a href="#"><font color="#3366cc">返回首页</font></a></td>
</tr>
</table>
</td>
</tr>
</table>


</body>
</html>


这样就行了吗?



xiaojie_5d

职务:普通成员
等级:1
金币:0.0
发贴:19
#112006/5/9 14:14:19
没人理了。?



xiaojie_5d

职务:普通成员
等级:1
金币:0.0
发贴:19
#122006/5/16 14:23:54
为什么没有人鸟我呀?苦呀。,兄弟们,这么多天过去了。



yiliaocheng

职务:普通成员
等级:2
金币:2.0
发贴:631
#132006/5/16 15:49:06
把下面的代码原封不动的加入到BODY区域就可以了,都说了几次了。
<script>
function zk(){
tbtype1.style.display = "";
tbtype2.style.display = "";
tbtype3.style.display = "";
tbtype4.style.display = "";
tbtype5.style.display = "";

}
function ss()
{
tbtype1.style.display = "none";
tbtype2.style.display = "none";
tbtype3.style.display = "none";
tbtype4.style.display = "none";
tbtype5.style.display = "none";
}
function showtb(tbnum){whichEl = eval("tbtype" + tbnum);if (whichEl.style.display == "none"){eval("tbtype" + tbnum + ".style.display=\"\";");}else{eval("tbtype" + tbnum + ".style.display=\"none\";");}}
</script>
<table rules='none' border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="183" bgcolor="#749AEC" height="924">
<tr>
<td bgcolor="#749AEC" valign="top">
<div align="center">
<table cellpadding="0" style="border-collapse: collapse" width="145" bgcolor="#749AEC">
<tr>
<td bgcolor="#749AEC" valign="top">
 <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" id="table1">

<tr style="CURSOR: hand" onclick=showtb(1) class=td2>
<td width="150" height="25" align="center">
<p align="left">爱普生服务</td>
</tr>
<tr id=tbtype1 style='display:none'>
<td bgcolor="#cad6eb" width="150" valign="top">
<p style="margin: 4; ">
&nbsp;<a href="#">公司简介</a><br>
&nbsp;<a href="#">服务理念</a><br>
&nbsp;<a href="#">环境理念</a><br>
&nbsp;<a href="#">联系通道</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(2) class=td2>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(2) class=td2>
<td height="25" align="center">
<p align="left">服务网络</td>
</tr>
<tr id=tbtype2 style='display:none'>
<td bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">服务网络介绍</a><br>
&nbsp;<a href="#">服务网络介绍</a><br>
&nbsp;<a href="#">加入服务网</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(3) class=td2>
<td height="1" align="center" height="25">
</td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(3) class=td2>
<td align="center" height="25">
<p align="left">服务项目</td>
</tr>
<tr id=tbtype3 style='display:none'>
<td bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">标准服务</a><br>
&nbsp;<a href="adminright1.asp?action=changepwd">特色服务</a><br>
&nbsp;<font color="#3366cc"><a href="#">客服中心</a></font><br>
&nbsp;<a href="#">耗材信息</a><br>
&nbsp;<a href="#">产品使用常识</a></p></td>
</tr>
<tr>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(4) class=td2>
<td align="center" height="25">
<p align="left">服务政策</td>
</tr>
<tr id=tbtype4 style='display:none'>
<td height="67" bgcolor="#cad6eb"><p style="margin: 4; ">
&nbsp;<a href="#">保修信息</a><br>
&nbsp;<a href="#">三包服务承诺</a><br>
&nbsp;<a href="#">维修指南</a></p></td>
</tr>
<tr>
<td height="1" align="center"></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(5) class=td2>
<td align="center" height="28">
<p align="left">新闻看台</td>
</tr>
<tr id=tbtype5 style='display:none' bgcolor="#cad6eb">
<td><p style="margin: 4; ">
&nbsp;<a href="#">新闻快报</a><br>
&nbsp;<a href="#">媒体转载</a></p></td>
</tr>
<tr style="CURSOR: hand" onclick=showtb(6) class=td2>
<td height="25">
<a href="#"><font color="#3366cc">返回首页</font></a></td>
</tr>
<tr id=tbtype6 style='display:none' bgcolor="#cad6eb">
<td height="25" border="1" bgcolor="#cad6eb">
 <br>&nbsp;<a href="#"><font color="#3366cc">返回首页</font></a></td>
</tr>
</table>
</td>
</tr>
</table>



shouyinji

职务:普通成员
等级:1
金币:0.0
发贴:50
#142006/5/23 11:45:01
这是直接添加代码,那么dreamweaver这个软件本身可以编辑制作二级菜单吗?



yiliaocheng

职务:普通成员
等级:2
金币:2.0
发贴:631
#152006/5/23 11:49:07
可以的。
你先添加一个“javacript:”的超级连接:<a href=“javacript:”>弹出菜单</a>,然后选择行为菜单里的弹出式菜单就可以添加了。