jquery如何改变不同网页的dom属性?

发布于 2024-11-06 15:56:29 字数 434 浏览 0 评论 0原文

我有 2 个网页: xxx.com\index.phpxxx.com\test.php

我想要完成的是当我单击 上的按钮时index.phptest.php 上需要更改一些内容,可能类似于:

$('input#submit').click(function() {
$('.online_sent'). show();
});

where input#submit in on index.php.online_senttest.php

我没有使用 iframe,它们只是 2 个网页,更确切地说是同一域上的 2 个子网页

i have 2 webpages: xxx.com\index.php and xxx.com\test.php

what i am trying to accomplish is when i click a button on index.php something to change on the test.php, maybe something like:

$('input#submit').click(function() {
$('.online_sent'). show();
});

where input#submit in on index.php and .online_sent in on test.php

i'm not using iframes, they are just 2 webpages, more exactly 2 sub-webpages on the same domain

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

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

发布评论

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

评论(2

↘人皮目录ツ 2024-11-13 15:56:29

您需要使用 node.js 之类的东西。

当用户单击您向 node.js 发送内容的按钮时,它将发送更新。在 test.php 上有一个侦听器,用于侦听此按钮单击并更改页面以与新状态相对应。

You'll need to use something like node.js.

When a user clicks on the button you send something to node.js, then it'll send an update. On test.php have a listener that listen's for this button click and changes the page to correspond with the new state.

醉生梦死 2024-11-13 15:56:29

你想做的事情并不酷,我的意思是更改一个不同的文件。我建议你将“变体部分”放入数据库中。然后将index.php中的更改应用到数据库,检测test.php中的更改

what you are trying to do is not cool, I mean change a different file. I suggest you to put "variant part" into database. Then apply changes to database from index.php, detect changes from test.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文