Is it possible to use JavaScript in one document to change HTML in another? - Stack Overflow

For example:function change(){document.getElementById('identification').href = ""

For example:

function change() { document.getElementById('identification').href = ""; }

The associated HTML (the important bit)

<a href="#" id="identification">Stack Overflow</a>
<input type=button value="Change" onclick="change()" />

This will change the href in my tag to , but say I wanted to do this from a different HTML file? The JavaScript would be in the tag of the other file, but would edit the content of the first. Is this possible? If so, how?

For example:

function change() { document.getElementById('identification').href = "http://www.stackoverflow."; }

The associated HTML (the important bit)

<a href="#" id="identification">Stack Overflow</a>
<input type=button value="Change" onclick="change()" />

This will change the href in my tag to http://www.stackoverflow., but say I wanted to do this from a different HTML file? The JavaScript would be in the tag of the other file, but would edit the content of the first. Is this possible? If so, how?

Share edited Dec 22, 2011 at 0:22 please delete me asked Sep 21, 2011 at 1:42 please delete meplease delete me 8092 gold badges14 silver badges29 bronze badges 9
  • Please keep in mind that I have very limited experience with JavaScript... – please delete me Commented Sep 21, 2011 at 1:44
  • You want to import another file and replace part of the page content? – epascarello Commented Sep 21, 2011 at 1:45
  • 1 I'm sorry but I don't think this is possible. This would be a plete security issue if this were possible. JavaScript is only for one page. You would have to use a server-side language because JavaScript is client side meaning it can't go to another page and do something to it. – Nathan Commented Sep 21, 2011 at 1:46
  • 2 I'm pretty certain this is asked at least once a week in various different forms. – zzzzBov Commented Sep 21, 2011 at 1:46
  • 1 stackoverflow./questions/3950620/… – zzzzBov Commented Sep 21, 2011 at 1:50
 |  Show 4 more ments

2 Answers 2

Reset to default 8

Javascript lives only for the life of a particular page so you can't have code in one file modify another, as yet unloaded file.

Depending upon what you want the user experience to be, there are some options:

  1. While on the first page, use some javascript to set a cookie and then when the second page loads, read that cookie and have the javascript in the second page adapt based on the cookie value. Cookies can be shared between pages on the same domain.
  2. While on the first page, use some javascript to create a query parameter (those things after the ? in a URL that look like this ?show=true. When you load the second page, request that page by appending the ?show=true (or whatever you make up) to the end of the URL. When the second page loads, it can examine the query parameters on it's URL and decide how to modify itself. This is the simplest way of passing temporary arguments from one page to the next page.
  3. Load the second page into an iframe (embedded into the first page) and when it's loads, your javascript can modify it (if it is served from the same domain as your main page).
  4. Load the second page into your first page, actually inserting it into the original page either appending it or replacing some of your existing content. Then, the first page's javascript can modify the HTML from the second page once it has been inserted.
  5. Open a new window with the new page in it. If it's on the same domain as you, then your javascript can reach into that new page and modify it.

Note: the browser tries to prevent page modifications when the two pages do not have the same origin (e.g. same domain). See a description of the same origin policy. So, if your question pertains to pages on different domains, then you will need to find a different way to solve your problem. Things like add-ons can sometimes get around the same-origin policy, but regular page javascript cannot for numerous security reasons.

Because I can't find a question that I feel matches this one enough to be closed as an exact duplicate, I'll post an answer:

Is it possible to use JavaScript in one document to change HTML in another?

Yes, assuming both windows are within the same security sandbox.

If so, how?

It's quite simple, you need to call the DOM functions from the context of the window you want to access.

a simple way to get a new window object is to call window.open

var newWin = window.open(newpage)

newWin is a window object, and therefor has a document object as well as all the other DOM elements that it may have loaded. Just like any other window, you'll need to wait for document.ready or window.onload if you're trying to interact with the elements being loaded on the page.

newWin.onload = function(){
  var ident = newWin.document.getElementById('identification');
  ident.href = 'http://stackoverflow.';
};

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743594221a4476138.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信