Home > Backend Development > PHP Tutorial > 怎么用javascript获取控件的值

怎么用javascript获取控件的值

WBOY
Release: 2016-06-13 10:26:44
Original
887 people have browsed it

如何用javascript获取控件的值
页面 a.php



点击按钮....后会弹出日历,在日历上选择一个日期后日期会显示在date文本框中,这些都已经实现

我想知道如何获得date文本框的内容然后把这个内容传递到b.php页面,并且页面不发生跳转。在b.php中又如何取得这个值?

高手帮帮忙,不胜感激,用什么方法实现都行,只要页面不跳转,麻烦说的详细些

------解决方案--------------------
修改较少的办法,form增加target及一个隐藏iframe。yourframe一致就好了




------解决方案--------------------
利用ajax请求b.php。
http://www.w3school.com.cn/ajax/ajax_asp_php.asp
------解决方案--------------------
你是用jq还是什么?

input 加个id 可以这样取
$('#id').val();

不加id的话就这样
$('input[name=date]').val();


如果是表单直接提交按#1楼那样做。
如果是ajax提交按2楼那样说的。
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