摘要:
//实名认证 验证$(function(){ //中文姓名验证 jQuery.validator.addMethod("zh_verify", function(value, element) { var tel = /^[\u4E00-\u9FA5\uf900-\ufa2... 阅读全文
摘要:
//测试时文件的编码方式要是UTF8 $str='中文a字1符'; echo strlen($str).'';//14 echo mb_strlen($str,'utf8').'';//6 echo mb_strlen($str,'gbk').'';//8 echo mb_strlen($... 阅读全文
摘要:
for (var obj in o.curform) { document.write("" + obj + " = " + o.curform[obj] + ""); } 阅读全文
摘要:
很有可能是入口文件index.php和.htaccess文件要转换成以UTF-8无BOM格式编码 阅读全文
摘要:
我的投资(以下是针对投资人来算的)=========================================================本期应收总额 = 本期回收本息(now_amount) - 利息管理费(fee)应收本金 = 本期回收本息(now_amount) - 利息(accru... 阅读全文
摘要:
我们先来看看这样一个例子,全局配置好tooltip,数据点的提示信息能够自己根据数据点自身数据情况加以显示,代码如下所示:view sourceprint?01.$(function() {02.$('#container').highcharts({03.04.chart: {05.},06.07... 阅读全文
摘要:
$(function(){ $("#login_accounts,#login_account,#shortcut_login_accounts").on('focus',function(){ window.document.onkeydown = function(e... 阅读全文
摘要:
http://edu.51cto.com/lecturer/user_id-3987533-page-2.html 阅读全文
摘要:
php自带的函数可以去除/删除字符串中的HTML标签/代码。strip_tags(string,allow):函数剥去 HTML、XML 以及 PHP 的标签。参数:string,必填,规定要检查的字符串;allow,选填,规定允许存在的标签,这些标签不会被删除。$str = '郭碗瓢盆-PHP';... 阅读全文
摘要:
/** * 把json数据填充到from表单中 */ 用户名: 地址: 性别:男 女 爱好:唱歌 写代码 发呆以下是JS方法用于对form表单进行赋值(通用方法)$.fn.formEdit = function(data){ r... 阅读全文