weixin_33690367 2014-04-09 04:15 采纳率: 0%
浏览 182

AJAX显示/隐藏div

I want to implement a ajax call to a page every 3 seconds. It will either return 0 if false or a html snippet like <div>Content</div>

How should I proceed to place or remove that div on the page according to what ajax returns ?

  • 写回答

2条回答 默认 最新

  • ℡Wang Yan 2014-04-09 04:21
    关注

    One possible way:

    html

    <div id="one" style="display:none"></div>
    <div id="two" style="display:block"></div>
    

    Now in your success function set the appropriate div visible or hidden

    ajax.request
    ({
        // some code
        success: function(response)
        {
            // here check the answer and show the div with id one
            document.getElementById('one').style.display = 'block';
        }
    })
    
    评论

报告相同问题?

悬赏问题

  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改