友情提示:小程序,开发制作。

标签《css》下的文章:

移除HTML5 input在type="number"时的上下小箭头

鄙人在给以为朋友做商城前段时偶然件发现一个问题.表单中的type="number"有个上下的箭头,感觉非常的不爽,尝试了多种办法,终于找到合适办法解决这个问题了..嘿嘿^.^ !

在chrome下:

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none !important;
    margin: 0;
}

Firefox下:

input[type="number"]{-moz-appearance:textfield;}

第二种方案:

将type="number"...

阅读全文>>

实现ecshop不同的分类调用不同的模版

目的:ecshop不同的分类调用不同的模版,如果没有就调用默认的模版 
最模板方法:模仿分类样式,COPY一个分类模版

注意:红色部分是新增加的,黑色部分,是让你找到位置,知道在哪里增加

实现ecshop不同的分类调用不同的模版


1,在分类表ecs_category里增加一个字段,style_moban属性就与style相同吧,
或者执行以下SQL语句 alter table  `ecs_category` add style_moban varchar(255) NOT NULL DEFAULT '';
2,修改admin\templates\category_info.htm
      <tr>
  &nb...

阅读全文>>

任意PC版页面跳转到对应的手机版

我做的是比较简单的功能,但是网络上谢了怎么跳转,就是不说,跳转到对应页面的怎么弄。所以我试了试。卖弄一下,高手不要喷。

原理是获取目标url经过整理修改,拼装一个新的url跳转过去就可以啦。复杂的涉及到正则表达式。我就无能为力啦。

$ua = strtolower($_SERVER['HTTP_USER_AGENT']);
$ua = strtolower($_SERVER['HTTP_USER_AGENT']);
if(isset($_GET['computer'])){
	$_SESSION['computer']=$_GET['computer'];
	$computer=$_SESSION['computer'];
}else{
	$computer="";
}
$uachar = "/(nokia|sony|ericsson|mot|samsung|sgh|lg|philips|panasonic|alcatel|lenovo|cldc|midp|mobile)/i";

if(($ua == '' || preg_match($uachar, $ua))&& !strpos(strtolower($_SERVER['REQUEST_URI']),'wap'))

阅读全文>>

discuz手机版 图片缩略图大小设置/修改

如果您使用的事默认模板那路径是

\template\default\mobile\forum\discuzcode.htm
找到discuzcode.htm文件,搜索“200”会有两处代码如下

function imagelist($attach) { global $_G; $attach['refcheck'] = (!$attach['remote'] && $_G['setting']['attachrefcheck']) || ($attach['remote'] && ($_G['setting']['ftp']['hideurl'] || ($attach['isimage...

阅读全文>>

<ul>< li>使用后,li中的内容不顶头

问题:<ul>< li>使用后,li中的内容不顶头
<div>
<ul>
     <li>333333333</li>
</ul>
</div>

效果:

点击查看原图

阅读全文>>