小编典典

jQuery Ajax:向调用方返回值?

ajax

我有一些jQuery代码。我已经调用了一个Ajax函数文件file.php,其中包含一些字段,例如:

<input type="radio" value="plz">Milk</input>.

我会再次分配给jQuery函数吗?如果是这样,我该怎么办?我附上了一个示例文件:

<html>
    <head>
        <LINK REL=StyleSheet HREF="examples.css" TITLE="Contemporary" TYPE="text/css">
        <script src="jquery-1.2.6.js" type="text/javascript"></script>
        <script src="jquery-impromptu.1.6.js" type="text/javascript"></script>
        <script>
            $(document).ready(function(){
                $.ajax({
                    type:"GET",
                    url:"file.php",
                    data:id,
                    success:function(){
                        var txt=id;
                        $.prompt( txt,{ opacity: 0.2 });
                    },
                    error:function(){
                        window.location("ERRoR");
                    }
                });
            });
        </script>

    <body>
    </body>
</html>

阅读 237

收藏
2020-07-26

共1个答案

小编典典

success函数采用一个参数,其中包含获取的数据。因此,在您的示例中:

$(document).ready(
    function(){ $.ajax({
       type:"GET",
       url:"file.php",
       data:id,
       success:function(txt){
          $.prompt( txt,{ opacity: 0.2 });
       },
       // ... more ...
    }
});

更多示例在jQuery文档中

2020-07-26