1

当我写:

var x = window.open('','','width=480,height=500');
x.document.write('
<html>
<head>
<link rel="stylesheet" type="text/css" href="chat.css" / >
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"><' +'/script>
<script type="text/javascript">
alert("hi");
<' + '/script>
</head>
<body><p>hi</p></body>
</html>');

我得到警报。

但如果我这样做——

 x.document.write('
<html>
<head>
<link rel="stylesheet" type="text/css" href="chat.css" / >
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
<' +'/script>
<script type="text/javascript">
$(function(){
alert("hi");
});
<' + '/script>
</head>
<body><p>hi</p></body>
</html>');

然后它不起作用。它什么也不做。我整晚都在想办法解决这个问题。有任何想法吗?

4

1 回答 1

1

这是因为 jQuery 永远不会触发 DOM 就绪事件,除非您.close()在写入文档后正确地写入它:

var x = window.open('','','width=480,height=500'),
x.document.write('all your html and script here');
x.document.close();

应得的信用:window.open 和 $(document).ready

于 2012-05-16T05:33:49.647 回答