jQuery根据表单name获取值的方法

本文实例讲述了jQuery根据表单name获取值的方法分享给大家供大家参考,具体如下:

根据name取值:

rush:js;"> $("input[name='mobile']").val()

根据id取值:

rush:js;"> $("#mobile_reg_form").html()

根据name取值遍历:

rush:js;"> $("input[name='mobile']").each( function(){ alert($(this).val()); } )

取出form中的input:

rush:js;">

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...