jquery怎么根据name获得标签

2024-11-10 02:49:34
推荐回答(2个)
回答1:

name是input标签的属性值,jQuery提供了attr() 方法用于设置/改变属性值

1
2

$("input:text").attr("name");
$("input:text").prop("name"); // 也可以使用prop()方法获取属性

示例代码如下
创建Html元素

1
2
3
4
5
6
7


点击按钮获取文本框的name属性值:






设置css样式

1
2
3
4
5

div.box{width:300px;height:250px;padding:10px 20px;margin:20px;border:4px dashed #ccc;}
div.box>span{color:#999;font-style:italic;}
div.content{width:250px;height:100px;margin:10px 0;padding:5px 20px;border:2px solid #ff6666;}
input[type='text']{width:200px;height:30px;border:none;}
input[type='button']{width:120px;height:30px;margin:10px;border:2px solid #ebbcbe;}

编写jquery代码

1
2
3
4
5

$(function(){
$("input:button").click(function() {
alert($("input:text").attr("name"));
});
})

观察效果

回答2:

jQuery通过name获取对象 使用jQuery获取name="nw"的input对象:$('input[name="nw"]'); 使用$('input[name="nw"]').val()方法或$('input[name="nw"]').html()方法来获取其值。 和JavaScript获取对象值一样,input、select、textarea等表单类对象