我制作了一个聊天窗口,用户可以在其中在我的网站上寻求支持。问题是,在他完成并想要关闭窗口之后,他按下了关闭聊天窗口的“X”。但是我在这里做了一个 div,它出现在屏幕中间,问他是否真的想关闭窗户。这是代码:
<div id="background">
<div id="stay">
<p style="font-family:Tahoma, Geneva, sans-serif;font-weight:600;font-size:19px;margin-top:10px;">Exiting the support window will delete all the conversation you had with the staff and will disconnect you from the conversation. </p>
<p style="font-family:Tahoma, Geneva, sans-serif;font-weight:600;font-size:19px;">Are you sure you want to exit ?</p>
<div id="agree">
<p>Yes</p>
</div>
<div id="cancel">
<p>No</p>
</div>
</div><!--stay end-->
</div><!--background end-->
查询:
$("#exit").click(function() {
$("#livesupport").hide();
$('html, body').animate({scrollTop:0}, 'fast');
$("#background").toggle();
$("body").css({ 'overflow':'hidden' });
$.post('utility/rchat.php', { table: sessid } ,
function(getshiton) {
});
});
“#livesupport”是聊天窗口。
如何让 No 成为答案,以便当用户按下它时它会返回到页面并且不对页面进行任何更改,并且当他按下 Yes 时,他会关闭支持窗口。