用ASP程式類比實現first-child的功能

來源:互聯網
上載者:User

first-child用來設定對象(Selector1)的第一個子物件(Selector2)的樣式表屬性。比如一個列表第一行的樣式可以和其他行有所不同,但目前IE尚不支援此偽類。下面給出用ASP類比實現的方法.

今看到經典裡在討論這個問題,Realazy的做法是採用了javascript,zbm2001z的做法是用了expression,我想如果這個列表是從資料庫讀出來的話,用程式寫可能更容易。我不是什麼程式員,只會一點最簡單的asp,如寫的不好, 還請多多指導諒解!

asp代碼以下是引用片段:

'資料庫連接代碼

response.write"<ulclass='fgList'>"
rs.movefirst
response.write"<liclass='firstchild'><atitle=''href='#'>"&rs("列表標題")&"</a></li>"
rs.movenext
dowhilenot(rs.eoforerr)
response.write"<li><atitle=''href='#'>"&rs("列表標題")&"</a></li>"
rs.moveNext
loop
response.write"</ul>"
response.write"<hr/>" CSS Code以下是引用片段:
ul.fgList{
list-style:none;
}
ul.fgLista{
color:#333333;
background:url(/img/arrow_l2.gif)no-repeat050%;
padding-left:1.5em;
line-height:2em;
text-decoration:none;
}
ul.fgLista:hover{
color:#999999;
text-decoration:underline;
background:inherit;
}
ul.fgListli.firstchilda{
color:#C00;
background:url(/img/arrow_l2_over.gif)no-repeat050%;
}
h3{
font-size:120%;
padding:2em1em.3em.3em;
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.