jquery如何改变不同网页的dom属性?
我有 2 个网页: xxx.com\index.php
和 xxx.com\test.php
我想要完成的是当我单击 上的按钮时index.php
在 test.php
上需要更改一些内容,可能类似于:
$('input#submit').click(function() {
$('.online_sent'). show();
});
where input#submit
in on index.php
和 .online_sent
在test.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用 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.
你想做的事情并不酷,我的意思是更改一个不同的文件。我建议你将“变体部分”放入数据库中。然后将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