上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页
摘要: 1、数组去重(array_unique): <?php $a=array("a"=>"Cat","b"=>"Dog","c"=>"Cat"); print_r(array_unique($a)); ?> 输出: Array ( [a] => Cat [b] => Dog ) 2、数组、字符串排序(s 阅读全文
posted @ 2016-11-04 08:43 怪咖咖 阅读(421) 评论(0) 推荐(0) 编辑
摘要: 1、$arr = array("one", "two", "three"); foreach ($arr as $value) { echo "Value: $value<br>\n"; } 结果:Value:one; Value:two; Value:three; 将数组$arr的值赋给$valu 阅读全文
posted @ 2016-10-19 09:45 怪咖咖 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 60%透明度:filter:alpha(Opacity=60); -moz-opacity:0.6; opacity: 0.6; 阅读全文
posted @ 2016-10-14 15:45 怪咖咖 阅读(286) 评论(0) 推荐(0) 编辑
摘要: *, *:before, *:after { padding: 0; margin: 0; box-sizing: border-box; } .menu { list-style: none; ... 阅读全文
posted @ 2016-10-14 15:36 怪咖咖 阅读(231) 评论(0) 推荐(0) 编辑
摘要: .public-container-max { position: relative; margin: 0 auto; width: 1000px; } .s-nav... 阅读全文
posted @ 2016-10-14 15:31 怪咖咖 阅读(690) 评论(0) 推荐(0) 编辑
摘要: 利用纯CSS创建一个等高多列的布局并不件易事,本教程将着重分析出现在多列布局的多个问题,然后为大家等来一个简单全游览器通吃的解决方法,不使用图片,脚本,CSS hacks并在最严格的XHTML 规范中都能通过验证。 问题的症结所在 如上图所示,由于各列的内容不一致导致其背景的高度也不统一。而背景实质 阅读全文
posted @ 2016-09-11 23:11 怪咖咖 阅读(167) 评论(0) 推荐(0) 编辑
摘要: function setIframeHeight(iframe) { if (iframe) { var iframeWin = iframe.contentWindow || iframe.contentDocument.parentWindow; if (iframeWin.document.... 阅读全文
posted @ 2016-08-02 16:58 怪咖咖 阅读(557) 评论(0) 推荐(0) 编辑
摘要: Title 阅读全文
posted @ 2016-07-30 15:44 怪咖咖 阅读(21863) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-07-30 08:37 怪咖咖 阅读(3193) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-07-29 16:21 怪咖咖 阅读(8225) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页