我有一个这样的页面:
<%@ Page Title="" Language="C#" MasterPageFile="~/TekContent.master" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<asp:Content ID="ContentPage" ContentPlaceHolderID="PageIdContent" runat="Server">
<div data-role="page" id="pageHome">
<div data-role="header" data-position="inline">
<h1>Welcome To My App</h1>
</div>
<div data-role="content">
<ul data-role="listview" data-inset="true">
<li><a href="#pageSignMe">Sign me up</a></li>
<li><a href="AddTag.aspx">Add Tag</a></li>
<li><a href="ShowList.aspx">Tag List</a></li>
</ul>
</div>
<div data-role="footer" class="ui-bar" id="div2">
</div>
</div>
</asp:Content>
当我点击时Tag List
, url 正在从http://localhost/MyApp/
变为http://localhost/MyApp/#AddTag.aspx
。我不明白为什么#
要在 Tag.aspx 之前添加。
后来的链接正在改变更多的网址。喜欢:http://localhost/MyApp/#MyApp/AddTag.aspx?id=1
这是因为我在 AddTag.aspx 中的页面脚本无法正常工作。
我想我没有得到 JQuery 移动 URL 规则。