gpt4 book ai didi

javascript - 使用 jQuery 从 URL 读取#hash

转载 作者:可可西里 更新时间:2023-11-01 02:54:09 26 4
gpt4 key购买 nike

如何使用 jQuery 从 URL 返回 website.com/#something(某物)的哈希值?

最佳答案

window.location.hash就这么简单。

不要使用所有那些消耗 CPU 和影响性能的方法。

如果 DOM 提供了一些预定义的东西,首先使用它。

要将值传递给 PHP,请对 php 执行 ajax 调用。

var hash = window.location.hash;

$.ajax({
url: 'someurl.php',
data: {hash: hash},
success: function(){}
})

关于javascript - 使用 jQuery 从 URL 读取#hash,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15741421/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com