Ⅰ 一個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);}