通过另一个页面上的切换按钮控制 div 可见性

发布于 2024-12-23 18:02:00 字数 85 浏览 1 评论 0原文

我希望通过管理页面上的切换按钮来控制一页上 div 的可见性。我见过很多在同一页面上完成此操作的示例,但没有一个可以解释从另一个页面完成此操作会是什么样子。

I am looking to control the visibility of a div on one page from a toggle button on an admin page. I have seen many examples of this being done on the same page but none that explain what it would look like to have this done from another page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初懵 2024-12-30 18:02:00

有多种方法可以处理这个问题。您应该研究自己想要做什么,然后决定最适合您的方法。

就我个人而言,我会考虑服务器端实现。通过这种方式,您可以控制向客户端的输出。例如,您可以使用会话变量。如何完成此操作取决于您使用的语言。

如果你只想要一个 javascript 解决方案那么我可以想到两个选择。首先是使用cookie。然后,您可以读取 cookie 并根据该值显示/隐藏 div。这就是我要做的。

其次,您可以传入一个查询字符串参数并在另一页上读取它。然后隐藏/显示你的div。 http://mysite.com/?div=hidden

There are a number of ways to handle this. You should research what you want to do and then decide on a method that works best for you.

Personally I would look at a server-side implementation. In this way you can control the output to the client. You can use session variables for example. How this is done will depend on what language you are using.

If you only want a javascript solution then I can think of two options. First is to use cookies. You can then read the cookie and show/hide the div based on the value. This is what I would do.

Second you can pass in a querystring parameter and read it on the other page. Then hide/show your div. http://mysite.com/?div=hidden

︶ ̄淡然 2024-12-30 18:02:00

如果管理页面使用 JavaScript 打开子页面,那么您可以将窗口分配给变量并通过该变量控制内容。就像这样:

var childWindow = window.open('some URL', options);
// now toggle the div in the child
var childDiv= childWindow.document.getElementById('your_div_id');
$(childDiv).toggle();

If the admin page opened the child page using JavaScript then you can assign the window to a variable and control the contents through that variable. Like so:

var childWindow = window.open('some URL', options);
// now toggle the div in the child
var childDiv= childWindow.document.getElementById('your_div_id');
$(childDiv).toggle();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文