摘要:
<script type="text/javascript"> $(".col-xs-12 img").addClass("carousel-inner img-responsive img-rounded");</script> 阅读全文
摘要:
preg_match ("",$test,$match); echo "$match[1]"; preg_match_all("",$rows['content'],$arr); $arrs=$arr[1]; for ($i=0; $i <3 ; $i++) { echo $arrs[$i]; ... 阅读全文
摘要:
//第一种 function getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:\d{1,2}$/,' '); } alert(getLocalTime(1293072805)); //结果是2010/12/23 上午10:53 //第二种 ... 阅读全文