去掉CSS中的表达式Expression_html/css_WEB-ITnose
程序员文章站
2022-05-30 19:59:28
...
在IE中,CSS是可以嵌入js表达式的,可以在CSS类中定义,但是将含有表达CSS类从DOM对象中移除,样式表达式是不会失效的。
经过研究找到了答案,需要使用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代码
- .wrap {
- border:none;
- max-width:730px;
- height:auto;
- width:expression(this.width>730?"730px":true);/*ie6补丁*/
- }
图片
Html代码
切换按钮
Html代码
- [原始大小]
js代码(需要jQuery)
Java代码
- function showOrigin(){
- $('#chart_img').toggleClass("chart");
- if($('#chart_img').attr("class")){
- $('#imgctr').text("[原始大小]");
- }else{
- $('#imgctr').text("[缩放大小]");
- $('#chart_img')[0].style.removeExpression('width'); /*ie6补丁*/
- }
- }
这个事例只有在IE6中才能体现removeExpression()的作用,ie7以上是不需要的。
推荐阅读
-
python正则表达式去掉数字中的逗号(python正则匹配逗号)
-
用Html+Css+JavaScript中的事件和正则表达式做一个“个人信息登记表“
-
css3中的content和实体_html/css_WEB-ITnose
-
DIV+CSS在不同浏览器中的表现_html/css_WEB-ITnose
-
世界上最疯狂10个建造中的摩天大楼_html/css_WEB-ITnose
-
media query中的条件重叠_html/css_WEB-ITnose
-
php正则匹配html中的带class的div,选取其中的内容_html/css_WEB-ITnose
-
外部引用CSS中 link与@import的区别_html/css_WEB-ITnose
-
css3中关于伪类的使用_html/css_WEB-ITnose
-
像csdn博客文章中图片和文字、代码等的排版是如何在服务器数据库中存储的?_html/css_WEB-ITnose