gpt4 book ai didi

javascript - 在状态栏隐藏网址

转载 作者:行者123 更新时间:2023-11-28 15:30:05 25 4
gpt4 key购买 nike

我读到人们多次问过这个问题,并且我已经找到了答案,尽管我必须对博客中的所有链接手动执行此操作。但我被无法开始工作的格式迷惑了:

我使用的格式:

<a onclick='location.href="#"' style='cursor: pointer;'target='_blank'>

但我无法让它适用于 data:post.href,它根本无法打开。

<a onclick='location.href="data:post.href"' style='cursor: pointer;' target='_blank'>

有人可以帮我解决这个问题吗?提前致谢

最佳答案

一般来说,出于 SEO 的原因,不建议在 中没有 href 链接。 Google 的抓取工具依靠链接中的 href 来抓取网站,并且链接汁使用标记中的 href 进行传递。为了让您的网站在搜索结果中排名更高,您需要使用 href 来为 GoogleBot 提供树结构。

为了防止复制,我建议您使用一些 jQuery 来隐藏 href 标签。它利用 javascript 删除 href 标签。单击链接时,它将打开一个包含 href 位置的新窗口。

示例如下:

<!DOCTYPE html>
<html lang="en">
<head>
<script src="http://code.jquery.com/jquery-1.10.0.min.js"></script>
<script>
$(function(){
$("a.hidelink").each(function (index, element){
var href = $(this).attr("href");
$(this).attr("hiddenhref", href);
$(this).removeAttr("href");
});
$("a.hidelink").click(function(){
url = $(this).attr("hiddenhref");
window.open(url, '_blank');
})
});
</script>
<style>
a.hidelink {
cursor: pointer;
text-decoration: underline;
}
</style>
</head>
<body>
<a class="hidelink" href="http://www.google.com">Some Link</a>
</body>
</html>

关于javascript - 在状态栏隐藏网址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27716122/

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