是否可以通过单击超链接或按钮将不同的 HTML 表单加载到页面上?
我有许多不同的 php-forms(25) 可以处理一些信息。是否可以仅通过从列表或超链接中选择某些内容来在页面上加载不同的表单,而不是为每个表单创建不同的页面?
例如:
如果我想使用表单 A,则单击表单 A 的链接或按钮,该链接或按钮会在重新加载时出现在页面上。
如果您需要我更好地向您解释,请告诉我,哈哈。
I have a number of different php-forms(25) that will handle some information. Instead of creating a different page for each of those forms, is it possible to be able to load a different form on the page just by selecting something from a list or hyper-link?
For example:
If I want to use form A then I click the link or button for form A, which then appears on the page when it reloads.
Let me know if you need me to explain it to you better lol.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为单击以选择表单的链接附加 GET 变量,以便在页面重新加载时,您可以使用这些变量来确定要显示的表单。
例如:
you can have the links that you click to select forms have GET variables attached to them, so that when the page reloads, you can use those variables to determine which form to show.
e.g.: