Ⅰ 一个asp做导航栏的问题,怎么实现导航栏……
html 支持的在asp 页面也可以用 你用html做成之后吧文件改成asp的就可以了
Ⅱ asp网页隐藏导航栏的代码
隐藏导航的话,可能用CSS: display:none; 首先找到导航层的div。
Ⅲ asp的网导航栏在源代码里面怎么修改
现在的导航栏灵活度很高,可以采用点击式的还可以采用滑动门模块的。目前的主流为滑动门模块。
一般都是使用dreamweaver打开导航栏代码,然后根据自己的需求来修改为点击模式的导航或是滑动门模块的导航即可。
Ⅳ asp+css导航栏出问题了,哪位能帮我看下代码
http://www.jq-school.com/Article.aspx?id=5
在这个里面下载吧,应该会有你适合的。
Ⅳ 高分 ASP 导航栏
立马帮你写了一个。看看,应该符合你的要求,直接复制过去,粘贴到写字板里面,改为html格式,运行就可以了
<html>
<style>
body{ font-size:12px;}
.test li{ width:80px; height:20px; background:#CCCCCC; display:block; list-style-type:none; float:left;}
.test li a{ padding-left:1px;width:80px; height:20px; background:#CCCCCC; display:block; list-style-type:none; float:left; text-align:center; line-height:20px; text-decoration:none; color:#000099;}
.test li a:hover{ padding-left:1px;width:80px; height:20px; background:#FFCC33; display:block; list-style-type:none; float:left; text-align:center; line-height:20px; text-decoration:none; color:#FF0000;}
</style>
<body>
<div>
<ul class="test">
<li><a href="#">test1</a></li>
<li><a href="#">test2</a></li>
<li><a href="#">test3</a></li>
</ul>
</div>
</body>
</html>
Ⅵ 下了个asp+css源码,但是导航栏有问题,不知道怎么修改哪位能帮忙修改下
这个也可能是浏览器不兼容的问题,如果是360,可以极速模式和兼容模式切换一下试试,还可以测试一下别的浏览器。
Ⅶ ASP导航代码
<html>
<style>
body{ font-size:12px;}
.test li{ width:80px; height:20px; background:#CCCCCC; display:block; list-style-type:none; float:left;}
.test li a{ padding-left:1px;width:80px; height:20px; background:#CCCCCC; display:block; list-style-type:none; float:left; text-align:center; line-height:20px; text-decoration:none; color:#000099;}
.test li a:hover{ padding-left:1px;width:80px; height:20px; background:#FFCC33; display:block; list-style-type:none; float:left; text-align:center; line-height:20px; text-decoration:none; color:#FF0000;}
</style>
<body>
<div>
<ul class="test">
<li><a href="#">test1</a></li>
<li><a href="#">test2</a></li>
<li><a href="#">test3</a></li>
</ul>
</div>
</body>
</html>
Ⅷ 如何修改asp源码导航栏的分类。网站后台不能更改我想直接去文件夹厘米更但是找不到文件夹在那个位置
CSS中找找,有的是DIV直接生成出来的
Ⅸ ASP导航栏,鼠标点击后状态停留的代码或者CSS代码
<ul id="navigation"><%=h()%></ul>
<script language="javascript">
function highlightPage(){ //这个函数作用是判断当前点击的URL,以便高亮显示相应的导航栏
if(!document.getElementsByTagName) return false;
if(!document.getElementById) return false;
if(!document.getElementById("navigation")) return false;
var nav=document.getElementById("navigation");
var links=nav.getElementsByTagName("a");
for(var i=0; i<links.length; i++) {
var linkurl=links[i].getAttribute("href");
var currenturl=window.location.href;
if (currenturl.indexOf(linkurl)!=-1) {
links[i].className="here";
var linktext=links[i].lastChild.nodeValue.toLowerCase();
document.body.setAttribute("id",linktext);
}
}
}
window.onload=highlightPage; //执行上面的函数
</script>
Ⅹ asp网站导航条如何修改代码加上导航条背景,现在没有导航背景,只加背景即可,背景图片有
.top_list{width:732px; height:27px; line-height:27px;padding:6px 0px 6px 40px; float:left;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;background-image:url(../images/memu.jpg);}