前言:
如果jquery文件名修改了,/phpcms/modules/admin/templates/header.tpl.php文件中的jquery名称需要对应修改
一、后台输入框的验证问题
/statics/js/formvalidator.js文件调整为:
点击下载
二、后台全选失效问题
1、/phpcms/modules/admin/templates/main.tpl.php第7行修改为:
$(function(){if (/MSIE \d/.test(navigator.userAgent)) $('#browserVersionAlert').show();});
2、/statics/js/admin_common.js中selectall函数修改为:
function selectall(name) {if ($("#check_box").prop("checked")) {$("input[name='"+name+"']").each(function() {$(this).prop("checked",true);});} else {$("input[name='"+name+"']").each(function() {$(this).prop("checked",false);});}
}