欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js获取form表单中name属性的值

程序员文章站 2023-10-27 17:23:46
在项目中因为动态表单无法确定标签name属性的值,因此需要即时获取以便进行存储。前端代码如下:
...

在项目中因为动态表单无法确定标签name属性的值,因此需要即时获取以便进行存储。前端代码如下:

<div class="control-group">
<label class="control-label">土拨鼠常挖坑</label>
<form:input path="formattribute1" class="input-xlarge" value="" name="测试1"/></div>
<form:input path="formattribute1" class="input-xlarge" value="" name="测试2"/></div>
<form:input path="formattribute1" class="input-xlarge" value="" name="测试3"/></div>

1、attr:$("#formattribute1").attr("name");然后得到的值是formattribute1(有没有前辈能给我讲讲为什么呀)

2、prop:问题同上

3、在上述两种方式都失败后,整个人不行了。最后找到了一个相对可行的方式,对class属性做修改,获取全部值,然后通过<c:foreach>标签获取this.value  和this.name,并放入map中。具体操作可参考如下代码(与上面代码区别在于class属性,在此处添加了property作为标识,此处可自定义名称)

<div class="control-group">
<label class="control-label">土拨鼠常挖坑</label>
<form:input path="formattribute1" class="input-xlarge property" value="" name="测试1"/></div>
<form:input path="formattribute1" class="input-xlarge property" value="" name="测试2"/></div>
<form:input path="formattribute1" class="input-xlarge property" value="" name="测试3"/></div>

js方法如下:

<script type="text/javascript">
   $("#btnsubmit").on("click",function () { //事件绑定btnsubmit是信息填写完毕提交处的按键
     var propertymap= {};
     $(".property").each(function () {
       propertymap[this.name] = this.value;
     });
    var propertyinfo= json.stringify(propertymap);
     alert($("#propertyinfo")
   });
 </script>

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接