国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > CSS > 正文

CSS的expression判斷表達式設置input樣式

2024-07-11 08:22:12
字體:
來源:轉載
供稿:網友
  用css的expression判斷表達式設置input樣式,簡單,輕量級。缺點在于expression判斷表達式firefox是不支持的。致命的是只能區分出一個(例如例子中就只能區分出text文本框),不要試圖設置多個…

  代碼:

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>www.52css.com</title>
    <meta name="author" content="justinyoung"/>
    <meta name="keywords" content=""/>
    <meta name="description" content=""/>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <style type="text/css">
    input
    {
    background-color:expression(this.type=="text"?'#ffc':'');
    }
    </style>
</head>

<body>
<dl>
<dt>this is normal textbox:<dd><input type="text" name="">
<dt>this is normal button:<dd><input type="button" value="i'm button">
</dl>
</body>
</html>

  另一種方法:

input{
    zoom: expression(function(ele){(ele.classname)?ele.classname+=" "+ele.type:ele.classname=ele.type; ele.style.zoom = "1";}(this));
}

  1、將 input 的屬性取出來,賦給 classname。
  2、對于 expression,這里使用一個無關緊要的屬性(此處是zoom)來觸發,處理完需要做的事情之后,再將此屬性覆蓋掉以解決 expression 不斷執行的效率問題。

  代碼:

<!--[if lt ie 7]>

<style type="text/css" media="screen">
input{ 
zoom: expression(function(ele){(ele.classname)?ele.classname+=" "+ele.type:ele.classname=ele.type; ele.style.zoom = "1";}(this));
}
input.text{
border: 1px solid; border-color: #ccc #eee #eee #ccc;
background: #f5f5f5;
}
input.password{
border: 1px solid; border-color: #ccc #eee #eee #ccc;
color: #000; background: #f5f5f5;
width: 50px;
}
input.button{
border: 1px solid; border-color: #eee #ccc #ccc #eee;
color: #000; font-weight: bold; background: #f5f5f5;
}
input.reset{
border: 1px solid; border-color: #eee #ccc #ccc #eee;
color: #666; background: #f5f5f5;
}
</style>
<![endif]-->

<style type="text/css" media="all">
input[type="text"]{
border: 1px solid; border-color: #ccc #eee #eee #ccc;
background: #f5f5f5;
}
input[type="password"]{
border: 1px solid; border-color: #ccc #eee #eee #ccc;
color: #000; background: #f5f5f5;
width: 50px;
}
input[type="button"]{
border: 1px solid; border-color: #eee #ccc #ccc #eee;
color: #000; font-weight: bold; background: #f5f5f5;
}
input[type="reset"]{
border: 1px solid; border-color: #eee #ccc #ccc #eee;
color: #666; background: #f5f5f5;
}
</style>
</head>
<body>
<input type="text" name="xx" />
<input type="password" name="yy" />
<input type="checkbox" name="oo" />
<input type="radio" name="pp" />
<input type="button" name="qq" value="button" />
<input type="reset" name="oo" value="reset" />
</body>
</html>
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 招远市| 湖口县| 安塞县| 新和县| 集安市| 彝良县| 东山县| 靖江市| 利川市| 仁怀市| 百色市| 屏南县| 井陉县| 云龙县| 焦作市| 信阳市| 云和县| 黄平县| 锡林浩特市| 台安县| 滕州市| 山阴县| 宁夏| 息烽县| 公主岭市| 怀来县| 南投市| 喀喇| 彭水| 台江县| 芦山县| 郎溪县| 元江| 错那县| 梅河口市| 湘潭市| 湛江市| 阿图什市| 陈巴尔虎旗| 崇州市| 曲阜市|