当前位置:  开发笔记 > 编程语言 > 正文

使用JavaScript调用jQuery函数

如何解决《使用JavaScript调用jQuery函数》经验,为你挑选了1个好方法。

我使用的是jQuery和JavaScript,我需要在JavaScript代码中调用jQuery函数.

我的jQuery代码:

function display(id){
    $.ajax({
        type:'POST',
        url: 'ajax.php',
        data:'id='+id  ,
        success: function(data){
            $("#response").html(data);
        }//success
    }); //Ajax

    //Here I need to return the ajax.php salary
    //return ?
}

我的ajax.php文件有:


我的JavaScript函数有:

my.js

function showName(){
    var id = 12;

    var a = display(id); //Here I need to call the jQuery function display().
}

如何在JavaScript代码中调用jQuery函数以及如何将PHP值返回给jQuery?



1> Ricardo Vega..:

我真的认为你需要把两件事分开:

    一个触发Ajax调用的函数.

    一个函数,它接收来自Ajax调用的结果并执行您需要的任何操作.

喜欢:

function display(id){
  $.ajax({
    type:'POST',
    url: 'ajax.php',
    data:'id='+id  ,
    success: anotherFunction; //Ajax response
  });
}

然后在你的my.js代码中:

display(2);
function anotherFunction(response){
    // Here you do whatever you need to do with the response
    $("#response").html(data);
}

请记住,display()将触发您的Ajax调用,代码将继续,然后当您收到响应时(可能会在几秒或几秒后),将调用anotherFunction().这就是Ajax 异步的原因.如果需要同步调用,请查看有关jQuery和Ajax技术的文档.

推荐阅读
TXCWB_523
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有