问题是quote.html有一个表单提交它转到PHP脚本和aganin通过包含相同的页面,我想显示成功弹出第二次你可以给我代码,如果是的话,不要投票如果你无法理解这个问题
我的php脚本:
include'quote.html';
quote.html-> php script-> quote.html(此时弹出显示成功消息)
检测php脚本上的加载,并显示弹出消息
是可能的,如果是,请帮助我获取代码..
提前感谢...
答案 0 :(得分:7)
当您重定向到php file script-> quote.html文件时 在URL中添加请求参数 quote.html?传= Y
在quote.html文件中添加以下java脚本后检测Request变量
<script>
function get(name){
if(name=(new RegExp('[?&]'+encodeURIComponent(name)+'=([^&]*)')).exec(location.search))
return decodeURIComponent(name[1]);
}
if(get('pass')=='y')
{
//add your popup code
}
</script>