我目前正在编写一个 php 脚本来检查数组中是否没有图像。如果没有图像,我需要一个消息框(我使用 jquery msgbox),询问您是否要创建没有图像的产品。
如果用户单击是,那么我如何返回 true 以便执行 php 代码?我知道 php 是服务器端,所以我“只是”需要你的建议,这里最好的解决方案是什么。
目前我的代码是这样的:
<?php if(!isset($_POST['img'] //imagearray)){?>
<script>
$.msgBox({
title: "Sure?",
content: "Add product without images?",
type: "confirm",
buttons: [{ value: "Yes" }, { value: "No" }, { value: "Cancel"}],
success: function (result) {
if (result == "Yes") {
return true;
}else{
return false;
}
}
});
</script>
<?php } ?>