Home > Backend Development > PHP Tutorial > PHP文件怎样得到HTML的js数据

PHP文件怎样得到HTML的js数据

WBOY
Release: 2016-06-23 14:23:37
Original
1121 people have browsed it

php html js

PHP文件怎样得到HTML的数据,不是action。
要做多条件查询,比如说医院和科室
意思是有一个php文件,a.php,有两个html文件,医院文件:b.html和科室文件:c.html文件。c文件的action提交到a.html文件。但是a文件怎样得到b文件的数据,这个数据存在js里,通过js传递给a文件

回复讨论(解决方案)

好乱……贴点代码看看……或者至少表述的清楚一些……

你可以把b.html内容放到c.html里一起提交过去。

没太看明白你的意思,但是a要和b交换数据写个ajax方法就可以了

没太看明白你的意思,但是a要和b交换数据写个ajax方法就可以了
ajax方法是什么?求代码

你可以把b.html内容放到c.html里一起提交过去。
b里面的数据不能放到c里面

好乱……贴点代码看看……或者至少表述的清楚一些……
<script> <br /> function GoHome1(name,id){ <br /> location.href='__APP__/Index/index?h_name='+name+'&h_id='+id; <br /> } <br /> </script>
下面就是html代码了,id和name传到c文件里,但是c得不到id和name

你这涉及到3个页面,c.html提交到b.html,那么b.html要怎么操作呢?是否也是form提交?它和a.php的关联又是怎样的呢?

在a.php中这样获取b.html内容

$b_html = file_get_contents('b.html');//这个就是b.html的内容

php是由服务器解析的,php先与js被运行,所以不可能直接赋值,但你可以利用url传值

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template