是否可以使用onsubmitJavaScript 从PHP调用函数?如果可以的话,有人可以给我举个例子吗?
onsubmit
function addOrder(){ $con = mysql_connect("localhost", "146687", "password"); if(!$con){ die('Could not connect: ' . mysql_error()) } $sql = "INSERT INTO orders ((user, 1st row, 2nd row, 3rd row, 4th row) VALUES ($session->username,1st variable, 2nd variable, 3rd variable, 4th variable))"; mysql_query($sql,$con) if(mysql_query($sql,$con)){ echo "Your order has been added"; }else{ echo "There was an error adding your order to the databse: " . mysql_error(); } }
那就是我要调用的函数。它的订购系统,你在你多么希望每个项目,点击提交,并键入 应 的顺序添加到表。
Javascript是一种客户端语言(在收到网页后在Web浏览器上执行),而PHP在服务器端(在呈现网页之前执行)。您无法拨打一个电话。
有一个名为xhttprequest的Javascript函数,该函数允许您调用Web服务器上的任何脚本并获取其答案。因此,要解决您的问题,可以创建一个PHP脚本,该脚本输出一些文本(或XML或JSON),然后调用它,然后使用Java脚本分析答案。
这个过程就是我们所说的AJAX,使用一个好的工具比您自己容易得多。看一下JQuery,它功能强大但易于使用,它具有内置的AJAX帮助器。
一个带有JQuery的示例(客户端):
$.ajax({ type: "POST", // the request type. You most likely going to use POST url: "your_php_script.php", // the script path on the server side data: "name=John&location=Boston", // here you put you http param you want to be able to retrieve in $_POST success: function(msg) { alert( "Data Saved: " + msg ); // what you do once the request is completed }