input表单元素中的name属性和id属性有什么区别?比如radio text里面的????
1个回答
展开全部
name 在radio 中 相当于 text 中的id 如:
<td class="tjztys">
<input type="radio" name="Sex" value="0" <%=(tempCustomer.Sex == 1 ? "" : "checked=\"checked\"")%>/>男
<input type="radio" name="Sex" value="1" <%=(tempCustomer.Sex == 1 ? "checked=\"checked\"" : "")%>/>女 <font class="font-red">*</font>
</td>
在后台或js 取值 就是取的 name
而在 text 中 取它的name属性就取不到 如:
<td class="tjztys"><input class="text-3" type="text" id="txtCust_SeatName" name="txtCust_SeatName" value="<%=tempCustomer.SeatName%>"/></td>
就必需取它的id 才能取到值
<td class="tjztys">
<input type="radio" name="Sex" value="0" <%=(tempCustomer.Sex == 1 ? "" : "checked=\"checked\"")%>/>男
<input type="radio" name="Sex" value="1" <%=(tempCustomer.Sex == 1 ? "checked=\"checked\"" : "")%>/>女 <font class="font-red">*</font>
</td>
在后台或js 取值 就是取的 name
而在 text 中 取它的name属性就取不到 如:
<td class="tjztys"><input class="text-3" type="text" id="txtCust_SeatName" name="txtCust_SeatName" value="<%=tempCustomer.SeatName%>"/></td>
就必需取它的id 才能取到值
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询