douren8379 2019-08-14 07:13
浏览 203

我如何发送多个AJAX请求[重复]

I have a textarea in my html, I want to send each lines via ajax to my request page and get the response but I don't know how to.

Example -
textarea lines -
Akib
Richard
Parkar

[Button Check]

it should return one-by-one line, like Akib - 90 Scores then Richard - 50 scores Parkar 40 scores

without refreshing

I only have a code that send single data and get single response

there is the single response getting code

<script>
        function GetResult() {
            var xmlhttp = new XMLHttpRequest();
            var str = $('textarea#combo').val();
            //var decCount = $('#invalid-count').val();
            xmlhttp.onreadystatechange = function() {
                if (this.readyState == 4 && this.status == 200) {
                    if ( this.responseText.indexOf("Dec") > -1 ) {
                        decCount=$('#invalid-count').val()+1;
                        var output = '<div class="result-div">'+this.responseText+'</div>';
                        $("#result-dec").append(output);
                        alert(decCount);
                        document.getElementById("invalid-count").innerHTML=decCount;
                    }
                }
            };
            xmlhttp.open("GET", "test2.php?combo=" + str, true);
            xmlhttp.send();
        }
    </script>```

</div>
  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 用三极管设计—个共射极放大电路
    • ¥15 请完成下列相关问题!
    • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
    • ¥15 求daily translation(DT)偏差订正方法的代码
    • ¥15 js调用html页面需要隐藏某个按钮
    • ¥15 ads仿真结果在圆图上是怎么读数的
    • ¥20 Cotex M3的调试和程序执行方式是什么样的?
    • ¥20 java项目连接sqlserver时报ssl相关错误
    • ¥15 一道python难题3
    • ¥15 牛顿斯科特系数表表示