首页 > 代码库 > serialize可以获取form表单里面的数值
serialize可以获取form表单里面的数值
serialize属性
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Document</title> 6 <script src="../jquery-1.12.2.js"></script> 7 </head> 8 <body> 9 <form action="cccc" id="wenlong"> 10 <input type="text" name="userId"> 11 <input type="text" name="userId1" placeholder="wenlong"> 12 <input type="text" name="userId2"> 13 </form> 14 <button>按钮</button> 15 </body> 16 </html> 17 <script> 18 $(‘button‘).click(function(){ 19 $(‘#wenlong‘).serialize(); 20 alert($(‘#wenlong‘).serialize()); 21 }) 22 </script>
serialize可以获取form表单里面的数据,但是必须是里面的input里面必须有name="userId",name是一个键,userId是键的具体名称 方便调用.
serialize可以获取form表单里面的数值
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。