如何从PHP中的表单弹出式JQuery的文本框中获取值。
这是我的网络page。
答案 0 :(得分:0)
使用
$("#inline_content table").find("#makhachhang").val(); // by this get id value in your form and same rest
$("#inline_content table").find(".tdthemkhachhang").val(); // by this get name value in your form and same rest
$("#inline_content table :radio :selected").val(); // by this get radio value in your form and same rest
答案 1 :(得分:0)
试试这个:
$("#makhachhang").val();
答案 2 :(得分:0)
如果你想用PHP从文本框中获取数据,你需要将HTML代码放在表单中,然后通过GET或POST发送数据。
我建议您通过Javascript获取数据。
$("#inline_content table").find("#makhachhang");
答案 3 :(得分:0)
你可以使用 如果输入是这样的:
$(“#IdOfYourInput”)。val()将返回容器
答案 4 :(得分:0)
基本上,只需在表单和name属性中添加一个action属性即可。
<form action="your php file">
<input name="email" />
<input type="submit" />
</form>
然后在你的php文件中,获取它:
$email = $_POST['email']
我建议你先学习基础知识: http://www.w3schools.com/html/html_forms.asp