2016年(89)
发布时间:2016-04-13 20:03:11
Strict Standards: Only variables should be passed by reference in D:\wamp\ecshop\includes\cls_template.php on line 406用软件打开406行是这句话$tag_sel = array_shift(explode(' ', $tag));解决方法5.3以上版本的问题,应该也和配置有关只要406行把这一句拆成两句就没有问题了$tag_sel = array_shift.........【阅读全文】
发布时间:2016-04-07 20:45:10
JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式,采用完全独立于语言的文本格式,是理想的数据交换格式。同时,JSON是 JavaScript 原生格式,这意味着在 JavaScript 中处理 JSON数据不须要任何特殊的 API 或工具包。本文主要是对JS操作JSON的要领做下总结。在JSON中,有两种结构:对象和数组。一个对.........【阅读全文】
发布时间:2016-04-05 20:51:31
function isCardNo(card){ // 身份证号码为15位或者18位,15位时全为数字,18位前17位为数字,最后一位是校验位,可能为数字或字符X var reg = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/; if(reg.test(card) === false) { alert("身份证输入不合法"); return false; }}转载自:http://w.........【阅读全文】
发布时间:2016-04-05 20:18:02
1. <!--[if !IE]><!--> 除IE外都可识别 <!--<![endif]-->2. <!--[if IE]> 所有的IE可识别 <![endif]-->3. <!--[if IE 5.0]> 只有IE5.0可以识别 <![endif]-->4. <!--[if IE 5]> 仅IE5.0与IE5.5可以识别 <![endif]-->5. <!--[if gt IE 5.0]> IE5.0以及IE5.0以上版本都可以识别 <![endif]-->6. <!--[if IE 6]> 仅IE6可识.........【阅读全文】
发布时间:2016-04-04 15:21:03
效果图如下:首先在页面中引用一下库:<link type="text/css" href="css/jquery-ui-1.8.17.custom.css" rel="stylesheet" /><link type="text/css" href="css/jquery-ui-timepicker-addon.css" rel="stylesheet" /><script type="text/javascript" src="js/jquery-1.7.1.min.js"></script><script type="text/java.........【阅读全文】