Jquery移动深层链接(有点)

时间:2015-06-17 12:24:45

标签: jquery jquery-mobile

我正在使用多页jquery手机,需要创建从一个“页面”到另一个“页面”内容的链接。

我是否可以直接通过<a>或我是否需要添加其他代码?

代码:

<body>
  <div style="min-height: 880px;" class="ui-page ui-body-c" data-role="page" id="Welcome"
  tabindex="0" data-url="Welcome">
    <!--- some content here =-->
    <!--- further down the "page" link =-->
    <a class="ui-link" href="#abstractday1" data-ajax="false">Abstract Day 1</a> 
    <!--- link that has been shortened just to a to save time =-->
  </div>

  <div style="min-height: 880px;" class="ui-page ui-body-c" data-role="page" id=
  "Abstract" tabindex="0" data-url="Abstract">
    <!--- further down the "page" where i want to goto =-->
    <!--- below is where I want to go from welcome link =-->
    <a class="ui-link" name="abstractday1"></a>
  </div>
</body>

1 个答案:

答案 0 :(得分:0)

我已经花了一些时间思考答案。

我会为其他人添加答案。

Script / js:

function myFunction(val) {
    setTimeout( function(){

  window.location.href = ""+ val +"";

}   , 1000 );
}

链接:

<a class="ui-link" href="#Abstract" onclick="myFunction('#abstractday1')" data-ajax="false">Abstract Day 1</a> 

快乐编码:)