jQuery ajax 调用 javascript 函数

发布于 2024-07-11 00:17:45 字数 977 浏览 12 评论 0原文

我正在使用 jQuery 和 Ajax。

我的 MainFile 有以下代码:

<html>
    <head>
        <script src="Myscript.js">
        </script>
        <script type="text/javascript">
            $(document).ready(function(){
                $.ajax({
                    type: 'POST',
                    url: 'ajax.php',
                    success: function(data){
                        $("#response").html(data);
                    }
                });
            });
        </script>

    <body>
        <div id="response">
        </div>
    </body>
</html>

我的 ajax.php 获取示例数据

...
MyScript.js has the following

function display (text,corner)
{

}
..

我有 Myscript.js。 在此,我有一个名为 display(text,corner) 的函数。 我必须在执行ajax.php后调用这个函数。

对于上面的代码,我该如何在 jQuery 中实现呢?

是否可以在ajax.php之后决定执行顺序并调用display(text,corner)

I am using jQuery and Ajax.

My MainFile has the following code:

<html>
    <head>
        <script src="Myscript.js">
        </script>
        <script type="text/javascript">
            $(document).ready(function(){
                $.ajax({
                    type: 'POST',
                    url: 'ajax.php',
                    success: function(data){
                        $("#response").html(data);
                    }
                });
            });
        </script>

    <body>
        <div id="response">
        </div>
    </body>
</html>

My ajax.php get the sample data

...
MyScript.js has the following

function display (text,corner)
{

}
..

I have Myscript.js. In this, I have a function called display(text,corner). I have to call this function after executing ajax.php.

How do I do it in jQuery for the above code?

Is it possible to decide the order of execution after ajax.php and make call for display(text,corner)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仄言 2024-07-18 00:17:45

您应该在 Ajax 请求的回调函数中调用 display 函数,如下所示:

$.ajax({
    type:'POST',
    url: 'ajax.php',
    success: function(data){
        display(data, /* your other parameter, corner */); //Invoking your data function
    } 
});       

在上述情况下,data 是从 ajax 接收到的响应。 php

You should invoke the display function in the callback function of the Ajax Request, like such:

$.ajax({
    type:'POST',
    url: 'ajax.php',
    success: function(data){
        display(data, /* your other parameter, corner */); //Invoking your data function
    } 
});       

In the above case, data is the response that is received from ajax.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文