博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

CSS 使用小结

Posted on 2015-10-31 18:43  Hamilton Tan  阅读(127)  评论(0编辑  收藏  举报

1.文字过长显示省略号(....)  white-space: nowrap;overflow: hidden;text-overflow: ellipsis; 

2.获取当前的ID : 

<asp:HiddenField runat="server" ID="hiddenOrderId" />

$('#<%:hiddenOrderId.ClientID%>').val();

 3.使用checkbox外面有文字,最好用label包含,这样点击文字也可以选中,用户体验好。

<label><input type="checkbox"/> 选中</label>

4.Js 根据条件,创建css

(function () {
 var url = window.location.search;
 var from = (url.indexOf("from=9") >= 0) ? 8 : 0;
 if (from == 8) {
     var style = document.createElement('link');
     style.href = 'css/ltest.css';
     style.rel = 'stylesheet';
     style.type = 'text/css';
     document.getElementsByTagName('head').item(0).append(style);
 }
})();

 6.#e2e2e只有5位 

 要么3位要么6位 

5位当然错呀  颜色都是6位  

e2e2e2

#ef2 和 #eeff22是一样的,是它的简写