css中expression的應用

來源:互聯網
上載者:User

在css中,<!--StartFragment-->expression可以自訂屬性,利用這個屬性,可以方便控制頁面元素的顯示,下面一個例子就是讓連結和平常文本一樣顯示,並在點擊時不觸發href屬性的跳轉。

<style>

.linkdisable {color:black;TEXT-DECORATION:none;zhsp1029:expression(this.onclick=function (){return false})}

</style>

<body>

<a href="blog.111cn.net/zhsp1029" class="linkdisable">奶牛</a>

</body>

解釋:

color:black;       設定文本顏色為黑色

TEXT-DECORATION:none   沒有底線

zhsp1029:expression(this.onclick=function (){return false}  設定連結在點擊時不觸發事件

其中zhsp1029為自訂的屬性名稱,expression(this.onclick=function (){return false}設定連結在滑鼠點擊時的行為

相關文章

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.