duanjiwu0324 2009-01-25 05:12
浏览 69
已采纳

使用JavaScript调用jQuery函数

I am using jQuery and JavaScript, I need to call the jQuery function inside my JavaScript code.

My jQuery code:

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 ?
}

My ajax.php file has:

<?php
   session_start();
    ....

   echo "$salary";
?>

My JavaScript function has:

my.js

function showName(){
    var id = 12;

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

How do I call the jQuery function inside JavaScript code and how do I return the PHP values to jQuery?

  • 写回答

2条回答

  • dongshuo8756 2009-01-25 08:15
    关注

    I really think you need to separate both things:

    1. A function to trigger the Ajax call.
    2. A function that receive the result from the Ajax call and do whatever you need.

    Like:

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

    Then in your my.js code:

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

    Remember that display() will trigger your Ajax call and the code will continue, then when you get your response (maybe some seconds or ms later) anotherFunction() will be called. That's why Ajax is asynchronous. If you need synchronous calls, check the documentation about jQuery and Ajax technique.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突