博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
修改过的项目内容
阅读量:6206 次
发布时间:2019-06-21

本文共 753 字,大约阅读时间需要 2 分钟。

加某个属性,支持该属性在后台配置下前端的显示运行:

1
2
3
4
5
6
7
8
9
10
if
($(n).attr(
"field"
)&&$(n).attr(
"field"
)==
"1"
){
    
var 
wrapperWidth=$(n).find(
"div[id*=fsUploadProgress]"
).width();
    
$(n).find(
".progress"
).each(
function
(){
        
$(
this
).css(
"width"
,wrapperWidth+
"px"
);
        
$(
this
).find(
".Container"
).css(
"width"
,wrapperWidth*0.9+
"px"
);
        
var 
_width = $(
this
).find(
".Container"
).width()-30;
    
$(
this
).find(
".progressName"
).css({
"overflow"
:
"visible"
,
"width"
:_width+
"px"
});
    
$(
this
).find(
".progressName"
).children(
"div:has('.fl')"
).css(
"width"
,
"80%"
);
    
});
}

总结:

  1. 在项目中,一般都用精确的值,百分比会有浮动的差异。

  2. 合并css样式可以用数组:.css({"":"","":""});

  3. 查找某个div下的class可以用:children("div:has('.f1')");

本文转自 爱笑嘚蛋蛋 51CTO博客,原文链接:http://blog.51cto.com/dd118/1677993,如需转载请自行联系原作者
你可能感兴趣的文章
iphone label相关的圆角处理(转)
查看>>
史上最笨拙最丑陋结果又最滑稽的C代码
查看>>
HDUOJ1002A + B Problem II
查看>>
svn: “sqlite: attempt to write a readonly database”
查看>>
仅在TabControl中的Tab中添加右键菜单
查看>>
javascript如何从tr中分别获得每个td的元素
查看>>
设计模式(一)工厂模式Factory(创建型)
查看>>
DIOCP 运作核心探密
查看>>
天津人民优步司机当周奖励政策 (8.3-8.9)
查看>>
eclipse运行hadoop程序报错:Connection refused: no further information
查看>>
Java构造方法的含义和使用
查看>>
微信小程序/支付宝小程序 WxParse解析富文本(html)代码
查看>>
Netty(五):Netty中如何序列化数据
查看>>
Tomcat优化详解
查看>>
css3 - 层次选择器
查看>>
Mybatis mark 勿看
查看>>
zabbix监控redis的key值
查看>>
BaiduSpeechDemo【百度语音SDK集成】(基于v3.0.8.1)
查看>>
javascript - 闭包以及函数
查看>>
C#设计模式之抽象工厂(AbstractFactory)
查看>>