IE
及其以後版本支持在CSS中使用expression
用來把CSS屬性和Javas cript表達式關聯起來
這裡的CSS屬性可以是元素固有的屬性
也可以是自定義屬性
就是說CSS屬性後面可以是一段Javas cript表達式
CSS屬性的值等於Javas cript表達式計算的結果
在表達式中可以直接引用元素自身的屬性和方法
也可以使用其他浏覽器對象
這個表達式就好像是在這個元素的一個成員函數中一樣
給元素固有屬性賦值
例如你可以依照浏覽器的大小來安置一個元素的位置
#myDiv {
position: absolute;
width: px;
height: px;
left: expression(documentbodyoffsetWidth + px);
top: expression(documentbodyoffsetHeight + px);
background: red;
}
給元素自定義屬性賦值
例如消除頁面上的鏈接虛線框 通常的做法是
<a onfocus=thisblur()>link</a>
<a onfocus=thisblur()>link</a>
<a onfocus=thisblur()>link</a>
粗看或許還體現不出采用expression的優勢但如果你的頁面上有幾十甚至上百個鏈接這時的你難道還會機械式地Ctrl+CCtrl+V麼何況兩者一比較哪個產生的冗余代碼更多呢?
采用expression的做法如下
<style type=text/css>
a {star : expression(onfocus=thisblur)}
</style>
<a >link</a>
<a >link</a>
<a >link</a>
說明裡面的star就是自己任意定義的屬性你可以隨自己喜好另外定義接著包含在expression()裡的語句就是JS腳本在自定義屬性與expression之間可別忘了還有一個引號因為實質還是CSS所以放在style標簽內而非s cript內OK這樣就很容易地用一句話實現了頁面中的鏈接虛線框的消除不過你先別得意如果觸發的特效是CSS的屬性變化那麼出來的結果會跟你的本意有差別例如你想隨鼠標的移進移出而改變頁面中的文本框顏色更改你可能想當然的會認為應該寫為
<style type=text/css>
input
{star : expression(onmouseover=thisstylebackgroundColor=#FF;
onmouseout=thisstylebackgroundColor=#FFFFFF)}
</style>
<style type=text/css>
input {star : expression(onmouseover=thisstylebackgroundColor=#FF;
onmouseout=thisstylebackgroundColor=#FFFFFF)}
</style>
<input type=text>
<input type=text>
<input type=text>
可結果卻是出現腳本出錯正確的寫法應該把CSS樣式的定義寫進函數內如下所示
<style type=text/css>
input {star : expression(onmouseover=function()
{thisstylebackgroundColor=#FF}
onmouseout=function(){thisstylebackgroundColor=#FFFFFF}) }
</style>
<input type=text>
<input type=text>
<input type=text>
注意
不是非常需要一般不建議使用expression因為expression對浏覽器資源要求比較高
實例利用css裡expression來實現界面對象的批量控制
問題說明: 用過CSS樣式我們就知道 可以定義一批對象的class屬性來指定同一個樣式來統一界面 但如何統一同類型的對象的事件? 比如:界面有無數個 <img src=**jpg> 如何實現鼠標經過此圖片 圖片的src變成是**_overjpg?
解決方法: 使用css的expression方法
具體實現要看看
css的寫法:
/*替換圖片CSS*/
#imgScript { /*這裡使用對象ID來通配樣式
也可以定義一個css函數*/
star:expression(
onmouseover = function()
{
/*替換圖片*/
if(this
hover != null){
this
name = this
src;
this
src = this
src
replace(
jpg
_over
jpg
);
this
HasChg =
;
}
}
onmouseout = function()
{
/*還原本來的圖片*/
if(this
HasChg != null){
this
src = this
name;
this
HasChg = null;
}
}
)
}/*end imgScript*/
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19504.html