這是我的聊天記錄功能。當我單獨在頁面上打開聊天時,它完美地工作。 www.example.com/chatbox/index.htm 但是,當它與使用的iFrame在同一頁面中的其他元素也不會work.egwww.example.com/chat & paintIframe.htmjavascript功能不起作用
這是我的代碼
<script type="text/javascript">
function singout(){
data="user=" + "" +"&oper=signout"
Ajax_Send("POST","chatbox/users.php",data,checkSignOut);
alert("Singout");
return false;
}
</script>
在這裏,我把它叫做
<iframe height="300" width="600" frameborder="0" src="chatbox/index.htm" onbeforeunload="singout()"></iframe>
附註:si ** gn ** out和si ** ng ** out是兩個不同的東西:)但如果這是您的文字代碼,至少您是一致的。 – Thomas 2010-06-25 18:13:51
「不起作用」是什麼意思?請更具體一些。 – Thomas 2010-06-25 18:14:46
你指的是什麼其他元素?你添加了什麼導致它不再工作? – pkaeding 2010-06-25 18:17:06