我想在弹出窗口中显示“请回去查看我不是机器人盒子”,我该怎么办?这是在html页面
如果未选择验证码(google验证码),则会显示。
if(isset($_POST['g-recaptcha-response'])){
$captcha=$_POST['g-recaptcha-response'];
}
if(!$captcha){
echo '<h2>Please go back and check the I am not a robot box.</h2>';
exit;
}
提前谢谢。
答案 0 :(得分:0)
您可以使用javascript警告框。
警告(“请回去查看我不是机器人盒子。”);
http://www.w3schools.com/js/js_popup.asp
如果你想要更好的东西(并且它可能是一个更好的主意,因为警报框可以解释为错误)我会使用jquery弹出窗口,对话框运行良好,这里快速查看它是如何实现的在代码中:
$('#dialog-confirm').dialog("option", "buttons", [
{
text: 'Please go back and check the I am not a robot box.',
click: function () { $("#dialog-confirm").dialog("close"); }
}
]); //end buttons
$('#dialog-confirm').dialog("open");