好吧,当用户单击它时,我有一个按钮,它被禁用并淡出在一条消息中谢谢我们很快就会解决这个问题,但是现在我想做的是,当用户单击该按钮时,它将被禁用,然后它将发布到一个 php 文件(比如说:error.php)这个error.php会是这样的
<?php
if(isset($_POST['submit'])){
$ip= $_SERVER['REMOTE_ADDR'];
$page= $_SERVER['REQUEST_URI'];
// now update these to sql database ..... and if successfully posted return true
}
else{
return false;
}
现在,如果 jQuery 为 True,它将在一个带有成功消息的 div 中淡入,否则它将在另一个 div 中淡入并带有错误/抱歉消息
html 和 JS 看起来像这样
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("#submit").click(function(){
$('#submit').attr('disabled',true);
$("#div1").fadeIn(1000); //if success
$("#div2").fadeIn(1000); //if error
});
});
</script>
</head>
<body>
<div id="div1" style="display:none;">Success</div>
<div id="div2" style="display:none;">Error</div>
<button id="submit">report The Page</button>
</body>
</html>
请帮忙