gpt4 book ai didi

javascript - 如何阻止出现多个小书签?

转载 作者:行者123 更新时间:2023-12-02 20:15:43 25 4
gpt4 key购买 nike

我正在制作一个小书签,它会弹出一个 div,其中包含各种内容...当您单击链接打开小书签两次时,会弹出两个小书签。我该如何防止这种情况发生?

index.html:

<html>
<head>
<title>Bookmarklet Home Page</title>
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body>
<a href="javascript:(function(){code=document.createElement('SCRIPT');code.type='text/javascript';code.src='code.js';document.getElementsByTagName('head')[0].appendChild(code)})();">click here</a>
</body>
</html>

代码.js:

function toggle_bookmarklet() {
bookmarklet = document.getElementById("bookmarklet");
if (bookmarklet.style.display == "none") {
bookmarklet.style.display = "";
}
else {
bookmarklet.style.display = "none";
}
}
div = document.createElement("div");
div.id = "bookmarklet";
div.style.margin = "auto";
div.style.position = "fixed";
content = "";
content += "<a href='javascript:void(0);'><div id='xbutton' onClick='javascript:toggle_bookmarklet();'>x</div></a>";
div.innerHTML = content;
document.body.appendChild(div);

最佳答案

在创建div之前只需检查它是否存在。

var div = document.getElementById("bookmarklet");
if (!div)
{
div = document.createElement("div");
div.id = "bookmarklet";
div.style.margin = "auto";
div.style.position = "fixed";
}

此外,由于您已经拥有对 div 的全局引用,因此无需在 toggle_bookmarklet 中通过 id 搜索它。您只需引用 div 即可。不过,我会尝试选择一个更独特的名称,以避免遇到命名冲突。

编辑:就此而言,如果您要使用全局变量,则可以进一步简化。甚至不用费心给它一个 id,只需使用全局引用即可:

function toggle_bookmarklet() {
bookmarkletEl.style.display = bookmarkletEl.style.display == "none" ? "" : "none";
}
if (!window.bookmarkletEl) {
var bookmarkletEl = ddocument.createElement("div");
bookmarkletEl.style.margin = "auto";
bookmarkletEl.style.position = "fixed";
}

关于javascript - 如何阻止出现多个小书签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6347552/

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