如何在jquery中刷新div标签内容

时间:2016-01-27 17:46:46

标签: php jquery

我有2个files.File1.php和File2.php。我在File1.php中创建了空的div1标签,其中包含File2.php的内容。 File2.php包含一个表,每行包含编辑按钮,在div2标记内。当我点击特定的编辑按钮时,div2标签应该得到更新,并且应该刷新而不使用jquery刷新整个页面。请提出任何想法...

File1.php

<div id="div1">
   //contains File2.php contents(below table)
</div>

File2.php

enter image description here

1 个答案:

答案 0 :(得分:0)

使用ajax调用

$("button").click(function(){
    $.ajax({url: "demo_test.php", success: function(result){
        $("#File2_content").html(result);
    }});
});
  

在demo_test.php中,你必须定位你的过程文件