时间:2021-07-01 10:21:17 帮助过:39人阅读
经过研究找到了答案,需要使用js调用style对象的removeExpression()方法才可去除。
下面是方法的说明:
语法
bSuccess = object.removeExpression(sPropertyName)
参数
sPropertyName | Required. String that specifies the name of the property from which to remove an expression. |
返回值
Returns one of the following possible values:
true | The expression was successfully removed. |
false | The expression was not removed. |
下面给出一个实用例子:利用样式限制图片最大宽度,通过一个按钮切换实际大小与缩放大小。
CSS类,作用:限制图片的最大宽度,超出指定宽度等比缩小。
Css代码
图片
Html代码
切换按钮
Html代码
js代码(需要jQuery)
Java代码
这个事例只有在IE6中才能体现removeExpression()的作用,ie7以上是不需要的。