如何通过jsp将一个表单元素复制到另一个表单元素?
我想将一个表单元素复制到另一个表单元素中
<a href="#" onClick="copySelectedOptions(document.forms[0]['lstusr'],document.forms[0]['lstto'],false);return false;">
它已经用 PHP 编写了。我想要它在 JSP 中。
I want to copy one form elements into another
<a href="#" onClick="copySelectedOptions(document.forms[0]['lstusr'],document.forms[0]['lstto'],false);return false;">
It is already written in PHP. I want it in JSP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的示例意味着您希望在客户端复制表单元素。在这种情况下,关于 PHP 或 JSP 的问题是无关紧要的:它们都是服务器端技术。因此,只需找到您之前使用过的 javascript 中实现的函数
copySelectedOptions
(可能在服务器端使用 PHP 并不重要),然后使用将其包含到您的 HTML 中标记并使用它。
Your example means that you wish to copy form elements on client side. In this case the question about PHP or JSP is irrelevant: they both are server side technologies. So, just find the function
copySelectedOptions
implemented in javascript you used before (probably with PHP on server side that does not matter), include it into your HTML using<script>
tag and use it.首先,我不明白这如何成为一个 Java / JSP / Servlet 问题。
copySelectedOptions
函数是一个 JavaScript 函数,可以通过复制并粘贴到 JSP 文件中来轻松重现。First of all, I don't see how this becomes a Java / JSP / Servlet question. The
copySelectedOptions
function is a JavaScript function and can be easily reproduced by copying and pasting into your JSP file.