我想在点击事件中导航到网站的页面。但我不确定如何在该功能中传递链接。
请建议!!
<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>
答案 0 :(得分:0)
可能是这样的:
$("#first").bind("tap", function(e) {
window.location.href = "http://www.tricksfind.in/2014/09/twitlonger-go-beyond-140-characters-in.html";
});
希望它有所帮助!