国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

jQuery mobile類庫使用時加載導航歷史的方法簡介

2019-11-20 11:04:34
字體:
來源:轉載
供稿:網友
jQuery.mobile.navigate( url [, data ] )

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

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

更改哈希片段兩次然后日志提供導航事件數據時,瀏覽器向后移動的歷史

// 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/#foowindow.history.back(); // From the `navigate` binding on the window, console output:// => "info about the #foo hash"http:// => "back"http:// => "http://example.com/#bar// => "#bar"

劫持一個鏈接點擊使用導航方法,然后加載內容

// 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" ) );});

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 漠河县| 普定县| 莆田市| 南投县| 肥城市| 都江堰市| 广西| 靖西县| 天气| 伊宁县| 祁阳县| 达尔| 永定县| 竹山县| 建始县| 乐山市| 久治县| 阳山县| 石城县| 宁河县| 河西区| 沅江市| 柳林县| 谢通门县| 固始县| 阿克苏市| 六枝特区| 都江堰市| 凤翔县| 张家川| 娱乐| 辰溪县| 祁阳县| 自治县| 高唐县| 尖扎县| 诸城市| 宣武区| 镇远县| 浮梁县| 龙陵县|