$.ajax 永不结束循环停止

发布于 2024-12-01 07:32:20 字数 1173 浏览 0 评论 0原文

我有一个 html 文档,我想从外部 html 文件加载一个表。在此文件中应该再次加载同一文件。当我开始这个时,我得到一个无限循环。 谁能告诉我如何在10次之后仍然结束加载?

好的,这是我的一些代码

html-document:

<html>
<head>
<script type="text/javascript" src="jquery-1.6.2.min.js"></script>
<script type="text/javascript">

    function table(){
    $.ajax({    
    url: "table.html",
         success: function(data) {$('#test1').html(data);},
    error: function(){alert('no!');},
    });
</script>
</head>
<body>
<input type="Button" onclick="table();" value="KNOPF" id="knopf"/>
<p id="test1">TEST </p>
</body>
</html>

table

<html>
<head>
<script type="text/javascript" src="jquery-1.6.2.min.js"></script>
<script type="text/javascript">

$.ajax({    
    url: "table.html",
         success: function(data) {
    $('#test1').html(data);},
    error: function(){alert('no!');},
    }); 
</script>
</head>
<body>
<p id="test1"><p>
<table border="1">
<tr><td>1</td></tr>
</table>
</body>
</html>

I have a html-document, in which I want to load a table from an extern html-file. In this file should be another load to the same file. When I start this, I get an enless loop.
Can anybody tell me how I can still end the loading after 10 times?

Ok, here is some of my code

html-document:

<html>
<head>
<script type="text/javascript" src="jquery-1.6.2.min.js"></script>
<script type="text/javascript">

    function table(){
    $.ajax({    
    url: "table.html",
         success: function(data) {$('#test1').html(data);},
    error: function(){alert('no!');},
    });
</script>
</head>
<body>
<input type="Button" onclick="table();" value="KNOPF" id="knopf"/>
<p id="test1">TEST </p>
</body>
</html>

table

<html>
<head>
<script type="text/javascript" src="jquery-1.6.2.min.js"></script>
<script type="text/javascript">

$.ajax({    
    url: "table.html",
         success: function(data) {
    $('#test1').html(data);},
    error: function(){alert('no!');},
    }); 
</script>
</head>
<body>
<p id="test1"><p>
<table border="1">
<tr><td>1</td></tr>
</table>
</body>
</html>

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

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

发布评论

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

评论(1

像极了他 2024-12-08 07:32:20

它可能是服务器端重定向/标头重定向。检查脚本中是否有一些重定向

It might be probably server-side redirecting/header redirecting. Check if you have some redirects in your script(s)

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