html能不能提交表单到php文件的函数中

 我来答
阿巴巴fGw
2017-03-24 · TA获得超过677个赞
知道小有建树答主
回答量:1470
采纳率:84%
帮助的人:514万
展开全部

可以

<form action="PHP接收文件.php" method="post">
<input type='text' value="我是提交的内容" name="content">
<input type="submit" value="点击我提交">
</form>

这样就可以提交了

至于提交到函数中,首先你的函数要被执行

追问
若是函数就在包含html的php文件中呢?
w727000059
2017-03-24 · TA获得超过412个赞
知道小有建树答主
回答量:483
采纳率:50%
帮助的人:257万
展开全部
用ajax就可以把数据传过去。
追问
那个,能具体点吗?
追答
ajax用get或者post的方法传递数据。
function get(url, fn){
//建立ajax对象
var xhr;
if(window.XMLHttpRequest){
xhr = new XMLHttpRequest();
}else{
xhr = new ActiveXObject("Msxml2.XMLHTTP");
}
//建立连接
xhr.open("GET", url, true);
//发送请求
xhr.send();
//接收响应
xhr.onreadystatechange = function(){
if( xhr.readyState == 4 && xhr.status == 200 ){
if( fn ){
fn(xhr.responseText);//回调函数
}
}
}
}

function post(url, arg, fn){
//建立ajax对象
var xhr;
if(window.XMLHttpRequest){
xhr = new XMLHttpRequest();
}else{
xhr = new ActiveXObject("Msxml2.XMLHTTP");
}
//建立连接
xhr.open("POST", url, true);
//发送请求
xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
xhr.send(arg);
//接收响应
xhr.onreadystatechange = function(){
if( xhr.readyState == 4 && xhr.status == 200 ){
if( fn ){
fn(xhr.responseText);//回调函数
}
}
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式