js 怎么获取select value值 和optione的文字

js 怎么获取select value值 和optione的文字,第1张

需要准备的材料分别有:电脑、html编辑器、浏览器。

1、首先,打开html编辑器,新建html文件,例如:indexhtml,编写问题基础代码,选中选项2。

2、在indexhtml中的<script>标签,输入js代码:

var value = $('#myselect')val();

var text = $('#myselect')find("option:selected")text();

$('body')append('value=' + value + ',text=' + text);

3、浏览器运行indexhtml页面,此时成功获得到选中的选项的值和文本并打印了出来。

1、checkbox日常jquery *** 作。

现在我们以下面的html为例进行checkbox的 *** 作。

<input id="checkAll" type="checkbox" />全选

<input name="subBox" type="checkbox" />项1

<input name="subBox" type="checkbox" />项2

<input name="subBox" type="checkbox" />项3

<input name="subBox" type="checkbox" />项4

全选和全部选代码:

<script type="text/javascript">

$(function() {

$("#checkAll")click(function() {

$('input[name="subBox"]')attr("checked",thischecked);

});

var $subBox = $("input[name='subBox']");

$subBoxclick(function(){

$("#checkAll")attr("checked",$subBoxlength == $("input[name='subBox']:checked")length true : false);

});

});

</script>

checkbox属性:

var val = $("#checkAll")val();// 获取指定id的复选框的值

var isSelected = $("#checkAll")attr("checked"); // 判断id=checkAll的那个复选框是否处于选中状态,选中则isSelected=true;否则isSelected=false;

$("#checkAll")attr("checked", true);// or

$("#checkAll")attr("checked", 'checked');// 将id=checkbox_id3的那个复选框选中,即打勾

$("#checkAll")attr("checked", false);// or

$("#checkAll")attr("checked", '');// 将id=checkbox_id3的那个复选框不选中,即不打勾

$("input[name=subBox][value=3]")attr("checked", 'checked');// 将name=subBox, value=3 的那个复选框选中,即打勾

$("input[name=subBox][value=3]")attr("checked", '');// 将name=subBox, value=3 的那个复选框不选中,即不打勾

$("input[type=checkbox][name=subBox]")get(2)checked = true;// 设置index = 2,即第三项为选中状态

$("input[type=checkbox]:checked")each(function(){ //由于复选框一般选中的是多个,所以可以循环输出选中的值

alert($(this)val());

});

2、radio的jquery日常 *** 作及属性

我们仍然以下面的html为例:

<input type="radio" name="radio" id="radio1" value="1" />1

<input type="radio" name="radio" id="radio2" value="2" />2

<input type="radio" name="radio" id="radio3" value="3" />3

<input type="radio" name="radio" id="radio4" value="4" />4

radio *** 作如下:

$("input[name=radio]:eq(0)")attr("checked",'checked'); //这样就是第一个选中咯。

//jquery中,radio的选中与否和checkbox是一样的。

$("#radio1")attr("checked","checked");

$("#radio1")removeAttr("checked");

$("input[type='radio'][name='radio']:checked")length == 0 "没有任何单选框被选中" : "已经有选中";

$('input[type="radio"][name="radio"]:checked')val(); // 获取一组radio被选中项的值

$("input[type='radio'][name='radio'][value='2']")attr("checked", "checked");// 设置value = 2的一项为选中

$("#radio2")attr("checked", "checked"); // 设置id=radio2的一项为选中

$("input[type='radio'][name='radio']")get(1)checked = true; // 设置index = 1,即第二项为当前选中

var isChecked = $("#radio2")attr("checked");// id=radio2的一项处于选中状态则isChecked = true, 否则isChecked = false;

var isChecked = $("input[type='radio'][name='radio'][value='2']")attr("checked");// value=2的一项处于选中状态则isChecked = true, 否则isChecked = false;

3、select下拉框的日常jquery *** 作

select *** 作相比checkbox和radio要相对麻烦一些,我们仍然以下面的html为例来说明:

<select name="select" id="select_id" style="width: 100px;">

<option value="1">11</option>

<option value="2">22</option>

<option value="3">33</option>

<option value="4">44</option>

<option value="5">55</option>

<option value="6">66</option>

</select>

看select的如下属性:

$("#select_id")change(function(){ // 1为Select添加事件,当选择其中一项时触发

//code

});

var checkValue = $("#select_id")val(); // 2获取Select选中项的Value

var checkText = $("#select_id :selected")text(); // 3获取Select选中项的Text

var checkIndex = $("#select_id")attr("selectedIndex"); // 4获取Select选中项的索引值,或者:$("#select_id")get(0)selectedIndex;

var maxIndex =$("#select_id :last")get(0)index; // 5获取Select最大的索引值

/

jQuery设置Select的选中项

/

$("#select_id")get(0)selectedIndex = 1; // 1设置Select索引值为1的项选中

$("#select_id")val(4); // 2设置Select的Value值为4的项选中

/

jQuery添加/删除Select的Option项

/

$("#select_id")append("<option value='新增'>新增option</option>"); // 1为Select追加一个Option(下拉项)

$("#select_id")prepend("<option value='请选择'>请选择</option>"); // 2为Select插入一个Option(第一个位置)

$("#select_id")get(0)remove(1); // 3删除Select中索引值为1的Option(第二个)

$("#select_id :last")remove(); // 4删除Select中索引值最大Option(最后一个)

$("#select_id [value='3']")remove(); // 5删除Select中Value='3'的Option

$("#select_id")empty();

$("#select_id")find("option:selected")text(); // 获取select 选中的 text :

$("#select_id")val(); // 获取select选中的 value:

$("#select_id")get(0)selectedIndex; // 获取select选中的索引:

//设置select 选中的value:

$("#select_id")attr("value","Normal");

$("#select_id")val("Normal");

$("#select_id")get(0)value = value;

//设置select 选中的text,通常可以在select回填中使用

var numId=33 //设置text==33的选中!

var count=$("#select_id option")length;

for(var i=0;i<count;i++)

{ if($("#select_id")get(0)options[i]text == numId)

{

$("#select_id")get(0)options[i]selected = true;

break;

}

}

通过上面的总结,应该对jquery的checkbox,radio和select有了一定的了解了吧,温故而知新,用多了就会变的熟练起来,即使有时候忘记了,也可以来翻一翻!

可以直接获取到select属性的值,之后赋值给新的控件

<body>

<select id="username" name="username" >

<option>张三</option>

<option>李四</option>

<option>王五</option>

</select>

<input id="usernme1" type="text" />

</body>

//以下代码比较放在jsp页面的底部。

<script type="text/javascript">

documentgetElementById("username")onchange=function(){

documentgetElementById("usernme1")value=thisoptions[thisoptionsselectedIndex]text;

}

</script>

jQuery获取Select元素,并设置的 Text和Value:

$("#select_id ")get(0)selectedIndex=1; //设置Select索引值为1的项选中

$("#select_id ")val(4); // 设置Select的Value值为4的项选中

$("#select_id option[text='jQuery']")attr("selected", true); //设置Select的Text值为jQuery的项选中

jQuery添加/删除Select元素的Option项:

$("#select_id")append("<option value='Value'>Text</option>"); //为Select追加一个Option(下拉项)

$("#select_id")prepend("<option value='0'>请选择</option>"); //为Select插入一个Option(第一个位置)

$("#select_id option:last")remove(); //删除Select中索引值最大Option(最后一个)

$("#select_id option[index='0']")remove(); //删除Select中索引值为0的Option(第一个)

$("#select_id option[value='3']")remove(); //删除Select中Value='3'的Option

$("#select_id option[text='4']")remove(); //删除Select中Text='4'的Option

三级分类 <select name="thirdLevel" id="thirdLevel"

onchange="getFourthLevel()">

<option value="0" id="thirdOption">

请选择三级分类

</option>

</select>

</div>

四级分类:

<select name="fourthLevelId" id="fourthLevelId">

<option value="0" id="fourthOption">

请选择四级分类

</option>

</select>

</div>

if($("#thirdLevel")val()!=0){

$("#thirdLevel option[value!=0]")remove();

}

if($("#fourthLevelId")val()!=0){

$("#fourthLevelId option[value!=0]")remove();

}//这个表示:假如希望当选择选择第三类时:如果第四类中有数据则删除,如果没有数据第四类的商品中的为默认值。

获取Select :

获取select 选中的 text :

$("#ddlRegType")find("option:selected")text();

获取select选中的 value:

$("#ddlRegType ")val();

获取select选中的索引:

$("#ddlRegType ")get(0)selectedIndex;

设置select:

设置select 选中的索引:

$("#ddlRegType ")get(0)selectedIndex=index;//index为索引值

如果不想通过ID获取select的话,可以给function1传递一个参数this,代表的是当前的select对象。然后通过

mySelectoptions[i]text

获取text的值。

我写了个例子,你可以参考一下(此外,你的option的结尾错了,这样可能导致option的数目变成两倍,仔细观察下我的代码与你的区别)

<head>

<script type="text/javascript">

function function1(mySelect){

alert(mySelectoptions[0]text);

}

</script>

</head>

<body>

<Select onChange="function1(this)">

<Option value="1">选项1</Option>

<Option value="2">选项2</Option>

<Select/>

</body>

jQuery是控制和 *** 作select详解。

先看下面的html代码

<select id="test">

<option value="1">选项一<option>

<option value="2">选项一<option>

<option value="n">选项N<option>

</select>

所谓jQuery *** 作“select”, 说的更确切一些是应该是jQuery控制 “option”, 看下面的jQuery代码:

//获取第一个option的值

$('#test option:first')val();

//最后一个option的值

$('#test option:last')val();

//获取第二个option的值

$('#test option:eq(1)')val();

//获取选中的值

$('#test')val();

$('#test option:selected')val();

//设置值为2的option为选中状态

$('#test')attr('value','2');

//设置最后一个option为选中

$('#test option:last')attr('selected','selected');

$("#test")attr('value' , $('#test option:last')val());

$("#test")attr('value' , $('#test option')eq($('#test option')length - 1)val());

//获取select的长度

$('#test option')length;

//添加一个option

$("#test")append("<option value='n+1'>第N+1项</option>");

$("<option value='n+1'>第N+1项</option>")appendTo("#test");

//添除选中项

$('#test option:selected')remove();

//删除项选中(这里删除第一项)

$('#test option:first')remove();、

//指定值被删除

$('#test option')each(function(){

if( $(this)val() == '5'){

$(this)remove();

}

});

$('#test option[value=5]')remove();

//获取第一个Group的标签

$('#test optgroup:eq(0)')attr('label');

//获取第二group下面第一个option的值

$('#test optgroup:eq(1) : option:eq(0)')val();

以上就是关于js 怎么获取select value值 和optione的文字全部的内容,包括:js 怎么获取select value值 和optione的文字、jquery中怎么选中所有的checkbox的值、select 控件,怎么把select的选择的值显示到text控件里等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9349983.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-27
下一篇 2023-04-27

发表评论

登录后才能评论

评论列表(0条)

保存