最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

jQuery mobile類庫使用時加載導(dǎo)航歷史的方法簡介

 更新時間:2015年12月04日 15:20:43   投稿:goldensun  
這篇文章主要介紹了jQuery mobile開發(fā)中加載導(dǎo)航歷史的方法,jQuery mobile是jQuery針對移動設(shè)備開發(fā)的JavaScript庫,需要的朋友可以參考下
jQuery.mobile.navigate( url [, data ] )

改變URL和跟蹤歷史。作品為瀏覽器和無歷史新的API

  • url:是必須的參數(shù)。類型:字符串
  • data:是可選的參數(shù)。類型:對象。 

更改哈希片段兩次然后日志提供導(dǎo)航事件數(shù)據(jù)時,瀏覽器向后移動的歷史

// Starting at http://example.com/
// Alter the URL: http://example.com/ => http://example.com/#foo

$.mobile.navigate( "#foo", { info: "info about the #foo hash" });
 
// Alter the URL: http://example.com/#foo => http://example.com/#bar

$.mobile.navigate( "#bar" );
 
// Bind to the navigate event

$( window ).on( "navigate", function( event, data ) {
 console.log( data.state.info );
 console.log( data.state.direction )
 console.log( data.state.url )
 console.log( data.state.hash )
});


 
// Alter the URL: http://example.com/#bar => http://example.com/#foo

window.history.back();
 
// From the `navigate` binding on the window, console output:
// => "info about the #foo hash"
// => "back"
// => "http://example.com/#bar
// => "#bar"

劫持一個鏈接點擊使用導(dǎo)航方法,然后加載內(nèi)容

// Starting at http://example.com/
// Define a click binding for all anchors in the page

$( "a" ).on( "click", function( event ) {
 
 // Prevent the usual navigation behavior

 event.preventDefault();
 
 // Alter the url according to the anchor's href attribute, and
 // store the data-foo attribute information with the url
 $.mobile.navigate( this.attr( "href" ), { foo: this.attr( "data-foo" ) });
 
 // Hypothetical content alteration based on the url. E.g, make
 // an ajax request for JSON data and render a template into the page.

 alterContent( this.attr( "href" ) );
});

相關(guān)文章

最新評論

通渭县| 都兰县| 塔河县| 鹤峰县| 台东县| 鹰潭市| 岳阳市| 彭山县| 蒙自县| 蒲城县| 天祝| 瓦房店市| 墨江| 漳州市| 嘉禾县| 新巴尔虎右旗| 金湖县| 鸡西市| 广灵县| 新竹市| 江达县| 湛江市| 星子县| 安国市| 同仁县| 湘阴县| 玛多县| 闽清县| 鄯善县| 双峰县| 定州市| 安义县| 合作市| 尉氏县| 中西区| 涿鹿县| 文昌市| 榆社县| 镇平县| 深水埗区| 祁门县|