单击按钮时,我在调用函数时遇到问题。我正在使用的代码如下所示,并且已经在其他页面上工作,这就是为什么我感到困惑。可能是因为这段代码是使用Document.write(NewPage)编写的旧页面的一部分,其中新页面本质上是从ajax帖子返回的php文档?
<div class="abSpec" id="intro" style="display: block; text-align: center;">
<p>Some text</p>
<input type="button" name="proceed" id="proceed" value="Proceed"/>
</div>
<script>
$(function(){
$("#proceed").click(function(){
document.getElementById('intro').style.display="none";
}
}
</script>
我不喜欢问一个调试问题,但我已经尝试了我能想到的一切。
感谢。
答案 0 :(得分:2)
document.write
只能在初始页面加载期间使用。见In JavaScript code after document.write() is not executed why?