这是我的.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;
});