您现在的位置: 爱51代码网 >> 范文 >> 文章正文
success如何调用外部函数问题

如下代码,在success如何调用a(); 呢? a(); this.a(); 都不行
function test(){

this.a=function(){   ...}

this.b=function(){
  $.ajax({
    async:true,
    url: "aa.asp",
    type:"get",
    success:function(_text){
       //在此如何调用 a();
    }
  });

}

}

去掉this
function test(){
var a=function(){   ...}

var b=function(){
  $.ajax({
    async:true,
    url: "aa.asp",
    type:"get",
    success:function(_text){
        a();
    }
  });

}

}

  • 上一篇文章:

  • 下一篇文章: 没有了
  • 最新文章 热点文章 相关文章
    Unable to write data to the tr
    asp.net中listbox的items.count属
    C#不是每次查询数据是不是被缓存
    ASP.NET发布后能加载引用的js文件
    Hadoop2.2.0在eclipse控制台没有
    maven如何加自定义的包
    redhat 2.6 (santigo 5.6) vsftp
    shell如何实现自动填写操作执行下
    linux shell 文件配置sh:color:
    shell script语法一定要加path吗
    Hadoop2.2.0在eclipse控制台没有
    maven如何加自定义的包
    redhat 2.6 (santigo 5.6) vsftp
    shell如何实现自动填写操作执行下
    linux shell 文件配置sh:color:
    shell script语法一定要加path吗
    SecureCRT如何访问虚拟机vmWare中
    C#如何读取WINDOWS的放大系数
    cximge的图如何存入数据库并提取
    DBGRID控件显示查询结果文本类型
    jQuery不间断图片滚动代码
    jQuery不间断图片滚动代码
     



    设为首页 | 加入收藏 | 网站地图 | 友情链接 |