如何实现后退按钮动态生成html?

时间:2012-07-19 11:31:48

标签: javascript html navigation

我有单页申请。所有数据都由ajax检索并在客户端上呈现。我有下一个工作流程:

  1. 用户打开项目列表。列表有无限滚动
  2. 用户滚动并点击项目
  3. 系统发出ajax请求,生成新的html并替换以前的内容
  4. 用户点击浏览器的后退按钮
  5. 系统更改网址(historyjs)和路由器加载项目并呈现列表。但滚动的位置很难!因此,用户需要滚动才能转到列表中的上一个位置。
  6. 如何在后退/下一步操作期间保留此位置并为所有项目实施通用解决方案?

4 个答案:

答案 0 :(得分:1)

返回浏览器按钮会更频繁地返回“缓存”页面。如果没有缓存,则会重新呈现页面。显然,鉴于HTTP状态的性质已经丢失。 我的建议是在列表中存储项目的编号,或者在“会话”变量或“缓存”对象中存储项目值,并在页面加载之前从那里访问它。

如果Session [“lastSelectedItem”]!= null,则获取值/数字,并使用jQuery或其他任何东西在正确的位置设置“选择器”。

答案 1 :(得分:1)

只需添加到列表ID并滚动到此ID

即可
<div id="item_1002">content of 1002</div>
<div id="item_1003">content of 1003</div>
<div id="item_1004">
    <span>content of 1004</span>
    <a href="#item_1002">goto 1002</a>
</div>

这甚至可以用于工作:)

用户点击链接,转到id发布(如果在当前页面上可用)并且位置如http://site.com/#item_1002。当用户点击浏览器时,将网址更改为http://site.com/#item_1004并滚动到<div id="item_1004">...


修改

我确信这不起作用,但就像我的坏英语

一样
<script type="text/javascript">
    // scroll to id
    // http://stackoverflow.com/questions/68165/javascript-to-scroll-long-page-to-div

    // need to use this
    // History.Adapter.bind(element,event,callback);
    // but I'm stuck how it works
    // so jQ
    $(document).ready(function(){
        $('a').click(function(){
            // document.getElementById('youridhere').scrollIntoView();
            $(this).scrollIntoView();
            History.pushState({}, 'title', '#item_ID');
        })


        // Bind to StateChange Event
        // Note: We are using statechange instead of popstate
        History.Adapter.bind(window,'statechange',function(){
            // Note: We are using History.getState() instead of event.state
            var State = History.getState();

            $(State.url).scrollIntoView();
        });
    })



</script>

<div id="item_1002">content of 1002</div>
<div id="item_1003">content of 1003</div>
<div id="item_1004">
    <span>content of 1004</span>
    <a href="javascript:">goto 1002</a>
</div>

答案 2 :(得分:1)

这是我的解决方案(coffeescript):

class window.Explore
  cached_pages = {}

  preserve: (url)=>
    current_position = window.pageYOffset || document.documentElement.scollTop || 0

    cached_pages[url] = 
      position: current_position

  clean: =>
    cached_pages = {}

  scroll_back: (url)=>    
    if cached_pages[url]
      $('body').scrollTop cached_pages[url].position


window.cached_explore = new Explore()

window.prev_state = undefined
window.current_state = undefined

$ ->
  History = window.History
  if !History.enabled
    return false

  History.Adapter.bind window, "statechange", =>
      # store previous history state
      window.prev_state = window.current_state
      window.current_state = History.getState()
      # preserve each page position before leaving
      if window.prev_state and window.prev_state.hash
        window.cached_explore.preserve(window.prev_state.hash)    

      place_match = location.pathname.match(/\/place\/(.*)/)    

      # place page
      if place_match
        # retrieve place      
        window.retrieve_place place_match[1], window.search_query, (err, place_dto) ->        
          # render place page
          window.show_place_popup place_dto        

      # explore places page
      else if location.pathname is '' or location.pathname is '/'
        # check if a page was already opened
        window.renred_explore_page()

        if window.prev_state
          window.cached_explore.scroll_back location.pathname

答案 3 :(得分:0)

如果您不想或不能使用会话,请尝试使用History.replaceState()

如果用户在无限滚动条中加载新的列表项,请替换历史记录状态History.replaceState()并附加项目计数或最后一个项目ID。

如果用户单击后退按钮,请评估项目计数,加载列表并向下滚动。