这是我的 .click 代码,它使用 ajax 发布到数据库中,还显示和隐藏了一些元素,现在我添加了将 notification.php 加载到 div 的功能,但问题是,这个加载的 notification.php 在大约 1 秒内消失,更重要的是,我需要在此按钮上单击两次才能显示 notification.php,有什么建议吗?
$("#notifBtn").click(function() {
var name = $(this).attr("name");
var dataString = 'name=' + name;
var parent2 = $(".notifalert");
$.ajax({
type: "POST",
url: "voting/addnotif.php",
data: dataString,
cache: false,
success: function (html) {
}
});
parent2.load("notification.php");
$("#newpost").show();
$(".thismenu").hide();
return false;
});