doushi7314 2016-09-13 01:05
浏览 30
已采纳

在PHP中使用javascript刷新div

So currently I am creating approve or deny page for several users in PHP and the page that I am building needs to be REFRESH

1.What I am trying to do is refreshing a SPECIFIC DIV

     The function refresh in javascript is working but there is
     a sudden duplication of div. 

I checked it several times and there is NO double(2) input="type" for search.

What line should I modify in to remove the duplicate SEARCH in div ref1 ?

  1. Can you guys please suggest an alternative way to refresh a div ?

enter image description here

<style>
           #ref2{
               background-color: darkseagreen;
           } #ref1{
               background-color: pink;
           }
       </style> 
    
 <body>
        <div id="ref1">
               shortcut preview **
              PHP -> isset ....add, delete, approve, search                       
               then view the content (SELECT * FROM dbname)  
               see image ^
   </div>


   <div id="ref2">
            <form action="tor.php" method="post">
              <input type="text" name="search" placeholder="Search for members.." onkeydown="searchq();" required  />
              <input type="submit" value=">>">
              <?php echo("$output"); ?>
           </form>         
      </div> 

<script langauge="javascript">
    function updateContent() {
    $.get("#", function(data) 
    { 
        $("#ref1").html( data ); 
        });
    }
        setInterval(updateContent, 1000);
    </script>
</body>
</html>

</div>
  • 写回答

2条回答 默认 最新

  • dongmi1864 2016-09-13 01:48
    关注

    you need to get the content of the ref1 div only to replace the previous content with, as you now get the entire HTML page and replace the div content with it.

    function updateContent() {
       $.get("#", function(data) 
       {
        var x = document.createElement("div"); 
            x.innerHTML = data;
           $("#ref1").html( $(x).find("#ref1").html()); 
        });
    }
        setInterval(updateContent, 1000);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 请问这个是什么意思?
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用
  • ¥15 我想付费需要AKM公司DSP开发资料及相关开发。
  • ¥15 怎么配置广告联盟瀑布流
  • ¥15 Rstudio 保存代码闪退
  • ¥20 win系统的PYQT程序生成的数据如何放入云服务器阿里云window版?