簡體   English   中英

如何使用jquery從URL獲取哈希(#)之后的值並在頁面加載中使用

[英]How do I get the value after hash (#) from a URL using jquery and use in page load

我有一個頁面,該頁面的URL地址帶有哈希值(#):localhost:15164 / L3 / mobile /#Android / Alcatel

我想用jQuery獲取URL地址,並在后面的代碼中的頁面加載事件中使用它。

<head runat="server">
    <title></title>
    <script src="js/jquery1.8.2.js"></script>
        <script>
            $(document).ready(function () {

                var url = window.location.href;
                var rest = url.substring(url.lastIndexOf("#") + 1, url.length);
                $('#urlLable').text(rest); 

        });
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Label ID="urlLable" runat="server" Text="Label"></asp:Label>
        <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
    </div>
    </form>
</body>
</html>

頁面加載(從jquery獲取地址):

protected void Page_Load(object sender, EventArgs e)
        {
            urlLable.DataBind();
            string urlStr = urlLable.Text;
            Response.Write(urlStr);
        }

哈希在這里可用:

location.hash

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM