如何使用 php 动态更改 HTML 文本区域或文本字段中的数据?
我将有一个网络应用程序,它将使用一些复杂的表单。一种表单的顶部有示例字段,底部有用户字段。大约会有 10 个示例。如果我可以更改文本和图像而不重新加载完整的 HTML 页面,那就太好了。
表单将基于 HTML。 Php将完成所有逻辑处理。我没有找到有关 HTML 按钮的信息 - 我可以用它来解决这个问题吗?或者我只需要表单中的几个提交按钮?
我如何使用 HTML 和 PHP 来实现这个?
提前致谢。
I will have a web-application which will use a few complex forms. One form will have examples field on the top and field for user on the bottom. There will be approximately 10 examples. It will be great if i can change text and images without reloading full HTML page.
Form will be based on HTML. Php will do all logic processes. I haven't find information about HTML button - can i use it for this problem or i need just several submit buttons in the form?
How can i implement this using HTML and PHP?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法单独使用 PHP 来完成此操作,因为它在服务器端运行并会强制您重新加载页面。
这通常是 Ajax 的工作,它是一种使基于 JavaScript 的技术调用 URL 而不重新加载当前页面。
jQuery 框架拥有最流行、最简单的 Ajax 实现 之一。
You can't do this with PHP alone, because it runs server-side and would force you to reload the page.
This is usually a job for Ajax, which is a technique to make JavaScript-based calls to URLs without reloading the current page.
The jQuery framework has one of the most popular and straightforward Ajax implementations.