代码被剪切了

This commit is contained in:
lizanle 2015-11-13 18:23:20 +08:00
parent dfd1e98d00
commit e905489157
1 changed files with 5 additions and 5 deletions

View File

@ -581,7 +581,10 @@
}
});
//查询学校
$("input[name='province']").on('input', function (e) {
throttle(shcool_search_fn,window,e);
});
function throttle(method,context,e){
clearTimeout(method.tId);
@ -603,10 +606,7 @@
type: 'post',
success: function (data) {
schoolsResult = data.schools;
count = data.count; //查询学校
$("input[name='province']").on('input', function (e) {
throttle(shcool_search_fn,window,e);
});
count = data.count;
maxPage = Math.ceil(count/100) //最大页码值
if(schoolsResult.length != undefined && schoolsResult.length != 0) {
var i = 0;