PHP文件怎样得到HTML的js数据解决思路

WBOY
Release: 2016-06-13 11:46:26
Original
930 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方法就可以了
------解决方案--------------------
你这涉及到3个页面,c.html提交到b.html,那么b.html要怎么操作呢?是否也是form提交?它和a.php的关联又是怎样的呢?
------解决方案--------------------
在a.php中这样获取b.html内容

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

Related labels:
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