我想在提交按钮点击时执行一些PHP代码而不刷新/重新加载我的页面。可能吗?我也有页面加载的JavaScript功能,这就是为什么我不想刷新我的页面。 提前谢谢。
<?php
if(isset($_POST["search"]))
{
$show = "SELECT * FROM data";
$rs = mysql_query($show) or die(mysql_error());
$add_to_textbox = "<input type='button' name='btn' value='add' />";
#****results in Grid****
echo "<table width='360px' border='1' cellpadding='2'>";
$rowID=1;
while($row = mysql_fetch_array($rs))
{
echo "<tr>";
echo "<td width='130px' id='name.$rowID.'>$row[Name]</td>";
echo "<td width='230px' id='link.$rowID.'><a href = '$row[Link]'>$row[Link]</a></td>";
echo "<td width='130px' onclick='Display($rowID);'>$add_to_textbox</td>";
echo "</tr>";
$rowID++;
}
echo "</table>";
#**********************
mysql_free_result($rs);
}
?>
<script type="text/javascript">
function Display(rowID){
var linkVal = document.getElementById('link'+rowID+'').innerHTML.replace(/<\/?[^>]+(>|$)/g, "\n");
document.getElementById("name").value = document.getElementById('name'+rowID+'').innerHTML;
document.getElementById("link").value = linkVal;
}
</script>
这是我的代码
答案 0 :(得分:7)
好吧,你需要使用javascript / ajax。
示例:在您的提交链接(一个href for exaple)上,添加call-in-to js function submitMe
并传递您需要的任何变量
function submitMe() {
jQuery(function($) {
$.ajax( {
url : "some_php_page.php?action=getsession",
type : "GET",
success : function(data) {
alert ("works!"); //or use data string to show something else
}
});
});
}
如果您想动态更改某些内容,则很容易 - 您只需要创建标记并为其分配ID:<div id="Dynamic"> </div>
然后使用
在这两个标签之间加载ANYTHINGdocument.getElementById("Dynamic").innerHTML = "<b>BOOM!</b>";
这意味着您在两个标签之间调用区域并将某些内容加载到它们中。与从该地点获取数据的方式相同:
alert(document.getElementById("Dynamic").innerHTML);
请阅读: http://www.tizag.com/javascriptT/javascript-getelementbyid.php
此外,播放和试验DOM元素并了解它们如何相互作用。这并不难,只需花一些时间来掌握所有概念。
答案 1 :(得分:0)
每当您从html表单发送请求ajax(无论如何都使用普通js)时,请确保添加return false语句以防止重定向: 类似的东西:
<form method="post" ... onsubmit="ajax_post(); return false;">
你必须使用ajax,但你可以用普通的javascript(没有jquery)来做。 Jquery让它更容易。
普通的javascript示例:此函数将通过get触发ajax,不带参数:你可以调整它以便它在POST中运行并能够发送一些参数: file 表示php文件到请求和 html 表示数据将显示的容器:
function plain_ajax(file,html){
if (window.XMLHttpRequest){
r=new XMLHttpRequest(); //For Most BRowser
} else{
r=new ActiveXObject("Microsoft.XMLHTTP"); //for Explorer
}
//When the state change
r.onreadystatechange=function(){
//ReadyState 4 = Loaded see: http://www.w3.org/TR/2006/WD-XMLHttpRequest-20060405/
//status 200 = ok see: http://en.wikipedia.org/wiki/List_of_HTTP_status_codes
if(r.readyState==4 && r.status==200){
//Replace the content with the response, Using creatDocumentFragment is more efficient
//at the cost of a few more lines But it would alos allow you to append the data
//instead of replacing it using innerHTML;
document.getElementById(html).innerHTML = r.responseText;
}
}
//Opening the connection and sending the request.
r.open("GET",file,true);
r.send();
}
答案 2 :(得分:0)
您的HTML或PHP表单
<form action="submit.php" method="post">
Name: <input name="name" id="name" type="text" /><br />
Email: <input name="email" id="email" type="text" /><br />
Phone Number: <input name="phone" id="phone" type="text" /><br />
<input type="button" id="searchForm" onclick="SubmitForm();" value="Send" />
</form>
您的JavaScript
<script>
function SubmitForm() {
var name = $("#name").val();
var email = $("#email").val();
var phone = $("#phone").val();
$.post("submit.php", { name: name, email: email, phone: phone },
function(data) {
alert("Data Loaded: " + data);
});
}
</script>
您的PHP页面要做一些活动
<?php
echo $_POST['name']."<br />";
echo $_POST['email']."<br />";
echo $_POST['phone']."<br />";
echo "All Data Submitted Sucessfully!"
?>