码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript传递参数方法

时间:2019-04-17 16:30:52      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:cti   分页   class   success   lse   get   use   ret   size   

1、SetTimer传递参数

setTimeout(function (obj) {
    obj.myScroll = new IScroll(#wrapper, { click: true });
    obj.myScroll.on(scrollStart, function () {
        document.activeElement.blur();
    });
    obj.myScroll.on(scrollEnd, function () {

        if (obj.isMore === false) {
            obj.setScrollHeight();
            return;
        }
        if (this.y <= this.maxScrollY) {
            if (obj.isMore === false) {
                obj.setScrollHeight();
                this.refresh();
                return;
            }
            if (obj.getData !== null) {
                obj.getData();
            }
            this.refresh();
        } else {
            this.refresh();
        }
    });
}, 100,this);

2、AjaxSuccess传递参数

var obj = this;
var url = this.url;
//有分页标志才启用分页参数
if (this.isUsePage) {
    url = url + "&pageIndex=" + this.pageIndex + "&pageSize=" + this.pageSize;
}
$.ajax({
    url: url,
    type: "post",
    dataType: "json",
    data: this.datas,
    success: function (p_datas) {
        obj.isLoading = false;
    },

 注意红色部分

JavaScript传递参数方法

标签:cti   分页   class   success   lse   get   use   ret   size   

原文地址:https://www.cnblogs.com/zhaogaojian/p/10724348.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!