在函数中传递URL

时间:2014-09-09 10:53:41

标签: jquery-mobile

我想在点击事件中导航到网站的页面。但我不确定如何在该功能中传递链接。

请建议!!

<div data-role="page">
<div data-role="header">
    <h1>My Header</h1>
</div>
<div data-role="content">
<ul data-role="listview" id="first">
    <li>Go Beyond 140 Characters</li>
</ul>   
</div>
</div>

 <script>
    $("#first").bind("tap", function(e) {
      <a href ="http://www.tricksfind.in/2014/09/twitlonger-go-beyond-140-characters-in.html"></a>
});
</script>

1 个答案:

答案 0 :(得分:0)

可能是这样的:

$("#first").bind("tap", function(e) {
  window.location.href = "http://www.tricksfind.in/2014/09/twitlonger-go-beyond-140-characters-in.html";
});

希望它有所帮助!