日期:2014-05-16 浏览次数:20316 次
<script type="text/javascript">
$(function() {
showmessage();
});
function showmessage() {
$.ajax({
dataType: "json",
type: "POST",
url: "/ajax/Message.ashx",
cache: false,
success: function(msg) {
if (msg.id == 2) {
$('embed').remove();
$('body').append('<EMBED src="/img/NOTIFY.WAV" hidden="true" autostart="true" loop="false"> </EMBED>');
}
setTimeout("showmessage()", 30000);
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
setTimeout("showmessage()", 30000);
}
});
}
</script>