如何在 PHP 中从表单弹出 JQuery 的文本框中获取值。
这是我的网页。
使用喜欢
$("#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
尝试这个:
$("#makhachhang").val();
如果您想使用 PHP 从文本框中获取数据,您需要将 HTML 代码放入表单中,并通过 GET 或 POST 发送数据。
我建议您通过 Javascript 获取数据。
$("#inline_content table").find("#makhachhang");
如果输入是这样的,您可以使用:
$("#IdOfYourInput").val() 将返回包含
基本上,只需将 action 属性添加到您的表单并将 name 属性添加到您的输入。
<form action="your php file">
<input name="email" />
<input type="submit" />
</form>
然后在您的 php 文件中,使用以下命令获取它:
$email = $_POST['email']
我建议你先学习基础知识:http: //www.w3schools.com/html/html_forms.asp