Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
269 views
in Technique[技术] by (71.8m points)

html - How can JavaScript make new page that contains more JavaScript?

I'm opening new page using JS and writing into it the HTML code, however when I try to write JS inside the new page using document.write() function it doesn't work. Apparently the main JS closes as soon as the it sees </script> which is intended for the JS of the new page that will be opened.

Is there away around this?

var opened = window.open("");
opened.document.write("<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">");
opened.document.write("<html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">");
opened.document.write("<head><title>Print Copy</title></head>");
opened.document.write("<body>");
opened.document.write("<script type="text/javascript">");
opened.document.write("</script>");
opened.document.write("<p>test</p></body></html>");
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

This sounds like you are embedding the JS into an HTML document rather than using an external file, and that you are serving it as text/html. (If it was XHTML then you would get a simple well-formedness error).

You could move the code to an external file (which is the simplest option), or you can escape the slash characters on anything that looks like an end tag:

document.write("</script>");

Note you should do this to all end tags (not just </script>) due to the way SGML works (even if most browsers don't completely respect the rules of SGML).

There is a good FAQ entry on this subject.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...