how to get generated html form with jquery

做~自己de王妃 提交于 2019-12-06 08:28:33

You can manually set the value attributes like this:

$('#myForm input').each(function(){ 
    $(this).attr('value', $(this).val());
});
console.log($('#myForm').html());

working fiddle: http://jsfiddle.net/7g6CP/1/

Be careful what you do with this however, you might be opening yourself up to some security concerns.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!