捕获已完成表单的修改后的 DOM 内容
我正在尝试捕获表单的修改后的 HTML 以保存以供以后使用。理想情况下,我想要一个在用户选择的单选按钮/下拉菜单上具有“已检查”和“已选择”属性的字符串。我正在使用 jQuery,我想我可以在表单上执行一个简单的 $('form').html() ,它会返回带有新用户输入值的表单 HTML,但它会返回没有用户的原始 HTML输入。
如何从填写的表单中创建反映用户更改的 HTML 字符串?
I am trying to capture the modified HTML of a form to save it for later use. I ideally would like a string that have "checked" and "selected" attributes on radio button/ dropdowns that the user has selected. I am using jQuery and I thought I could do a simple $('form').html() on the form and it would return me the form HTML with the new user inputed values, but it returns me the original HTML with no user input.
How can I create a string of HTML from the filled out form that reflects the user's changes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想我会为了教育目的而对此感到奇怪......
您可以绑定所有适当的事件来实际编辑 DOM:
http://jsfiddle.net/jkj4h/
I thought I'd take a wack at this just for educational purposes...
You could bind all appropriate events to actually edit the DOM:
http://jsfiddle.net/jkj4h/