语句函数:val();
假设一个input代码哗颤雀:
JS代码如下:
运行结果:
扩展资料乱早:
val() 方法返回或设置被洞桥选元素的值。元素的值是通过 value 属性设置的。该方法大多用于 input 元素。如果该方法未设置参数,则返回被选元素的当前值。
使用函数设置 Value 属性的值:
$(selector).val(function(index,oldvalue))
规定返回要设置的值的函数:
index - 可选。接受选择器的 index 位置。
oldvalue - 可选。接受选择器的当前 Value 属性。
参考资料:jquery--val()
name是input标签的属性值,jQuery提供了attr() 方法用于设置/改变属性值
$("input:text").attr("name");
$("input:text").prop("name"); 大纤 // 也可以使用prop()方法贺知获取属性
示例代码如下
创建Html元素
点击按钮获取文本框的name属性值:
滚拍仿
设置css样式
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代码
$(function(){
$("input:button").click(function() {
alert($("input:text").attr("name"));
});
})
观察效果
你是想问根据name的值获袭春毕取input中的数据吗?
$("森弊input['name=test']").val(); 就可拍芹以了