电脑技术学习

css用expression来区分只读文本框

dn001

<style type="text/css">
<!--

input{ background:expression((this.readOnly &&this.readOnly==true)?"#CCCCCC":"")}
-->
</style>

<body>
<input type="text" name="" />
<input type="text" name="" readonly="readonly" />

expression:处理方式:

expression(操作手法);

expression(?:)