jQuery 获取表单提交字段
生成的 HTML 标记位于
HTML
<input type="hidden" name="CONTROL$POSITION" value="" id="control_position_1"/>
<input type="hidden" name="CONTROL$POSITION" value="" id="control_position_2"/>
<input type="hidden" name="CONTROL$POSITION" value="" id="control_position_3"/>
下面,其中每个隐藏字段值代表可拖动控件的 x 和 y 坐标。我想通过单击按钮获得如下所示的输出。我对需要做什么感到困惑
输出
name$xvalue$yvalue[seperator]repeats
这是一个简单的迭代
name=position,x=10,y=10,seperator=§
因此这将是输出 position$10$10§
。
问题:
如何在按钮单击时生成输出,如上面的输出部分所示。
HTML markup generated is below
HTML
<input type="hidden" name="CONTROL$POSITION" value="" id="control_position_1"/>
<input type="hidden" name="CONTROL$POSITION" value="" id="control_position_2"/>
<input type="hidden" name="CONTROL$POSITION" value="" id="control_position_3"/>
Where each hidden field value represents the draggable controls x and y co-ordinates. I would like to get the output like below on a button click. I am confused as to what needs to be done
Output
name$xvalue$yvalue[seperator]repeats
here is a simple iteration
name=position,x=10,y=10,seperator=§
so this would be output position$10$10§
.
Question:
How to generate a output on button click as given in output section above.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不完全理解所有细节,但一般解决方案可能如下所示:
Not completely understanding all the details, but the general solution could look like: