我有一个jquery message box 的代码。 如果我点击下面的链接, 就会看到一个消息框 。
<p><a id="msgup" class="">Demo Top</a></p>
<script>
$("#msgup").bar({
color : #1E90FF ,
background_color : #FFFFFF ,
removebutton : false,
message : Your profile customization has been saved! ,
time : 2000
});
</script>
现在我想做的是当我得到“冷”作为我的 Ajax 服务器响应中的值时显示信息框。 为了实现这一点,我尝试了以下代码, 但它不起作用。 可能是因为它没有调用 jquery 函数 。 请您如何使它生效?
$.ajax({
type: "POST",
url: "<?php echo base_url(); ?>contents/hello",
data: "id="+a_href,
success: function(server_response) {
if (server_response == cold ) {
//Beginning of the code for message box
$("#msgup").bar({
color : #1E90FF ,
background_color : #FFFFFF ,
removebutton : false,
message : Your profile customization has been saved! ,
time : 2000
});
//End of the code for message box
// Instead of the message box code I have tried
// alert( Message ); and it worked
}
else {
$("#result").html(server_response);
}
}
}); //$.ajax ends
提前感谢:)