我想在满足 PHP 中的某些条件时显示一个弹出警告框。就像是:
echo "<script type="text/javascript"> alert('bleh'); </script>";
除了使用自定义 jquery 警报框。这可能吗??
我试过类似的东西:
echo "<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#dialog-message" ).dialog({
modal: true,
buttons: {
Ok: function() {
$( this ).dialog( "close" );
}
}
});
});
</script>";
但它给了我一个奇怪的效果。不弹出。
感谢您的关注。