日期:2014-05-16 浏览次数:20740 次
<!DOCTYPE html> <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script type="text/javascript"> function execute(){ xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { // 在这里显示服务器脚本返回的内容 //document.getElementById("myDiv").innerHTML=xmlhttp.responseText; } } xmlhttp.open("POST","/submit/index/<?=$id;?>",true); xmlhttp.send(); } </script> </head> <body> <form target="formSubmit" defaultbutton="btn" method="post" id="submitForm" name="submitForm"> <div class="chakanphone"> <p style="font-size: 16px" >您确定要执行吗? <br> <input type="button" onclick="location.href='/submit/index/<?=$id;?>'" style="font-weight: bold; font-size: 14px" value="立即执行" class="guanbi"> </p> </div> </form> </body> </html>