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

首頁 > 語言 > JavaScript > 正文

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

2024-05-06 16:25:51
字體:
來源:轉載
供稿:網友
這篇文章主要介紹了jQuery mobile開發中加載導航歷史的方法,jQuery mobile是jQuery針對移動設備開發的JavaScript庫,需要的朋友可以參考下
 
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"// => "back"// => "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" ) );});


注:相關教程知識閱讀請移步到JavaScript/Ajax教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 开远市| 沽源县| 阿瓦提县| 萨迦县| 肃南| 常州市| 洪湖市| 肇东市| 石柱| 方正县| 阿拉尔市| 雷州市| 斗六市| 迁安市| 临沂市| 遂溪县| 临安市| 木兰县| 石柱| 郯城县| 定日县| 南陵县| 怀远县| 平顶山市| 南汇区| 铁岭县| 清新县| 陵水| 外汇| 姜堰市| 囊谦县| 容城县| 玉环县| 威宁| 龙胜| 东方市| 敦化市| 江孜县| 汉源县| 定边县| 巴里|