如何用jquery获取input输入框中的值

2024年11月17日 22:31
有1个网友回答
网友(1):

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"));});})观察效果