本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
js获取<s:radio>的值
<s:radio name="isCharge" id="isCharge" list="#{'Y':'是','N':'否'}"
listKey="key" listValue="value" value="'Y'" onchange="sta ...
认识css样式clip: 认识隐藏页面元素的另一个技巧
在页面上,我们经常会用到radio, 比如性别:男,女,保密.
但我们不喜欢默认的radio样式!我们会用其他的来替代.
我最初的做法是, 用label显示,设置radio为隐藏! (即display:none;)
当我点击label的时候,同时触发radio的click事件.
即: ($是jquery)
$(".label1").click(function() ...
选中特定的radio
<html>
<head>
</head>
<body>
<table>
<tr>
<td>
分类1:分辨率 <input type='radio'
name='adv.advRes.id' value='1'/>320*4 ...
radio
function stepOne()
{
var formPanel = Ext.create('Ext.form.Panel', {
id:'form',
bodyPadding: 5,
fieldDefaults:
{
labelAlign: 'left',
la ...
Jquery radio取值,checkbox取值,select取值,radio选中,checkbox选中,select选中,及其相关
获取一组radio被选中项的值
var item = $('input[@name=items][@checked]').val();
获取select被选中项的文本
var item = $("select[@name=items] option[@selected]").text();
select下拉框的第二个元素为当前选中值
$('#select_id ...
jQuery操作Select,radio,checkbox 操作
1 下拉框
1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发
2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text
...
jQuery获取单选框和多选框的值
单选框:
<label><input type="radio" name="radio" id="radio1" value="1" /> 25岁以下</label>
<label><input type="radio" name=" ...
Jquery操作radio,checkbox,select
一 、Select
jQuery获取Select选择的Text和Value:
1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发
2. var checkText=$("#select_id").find("option:selected") ...
jQuery之radio(单选)
页面代码如下:
<input type="radio" name="sex" value="0" checked/>男
<input type="radio" name="sex" value="1" ...
jquery获取和设置radio,check,select选项(转)
select控件选项
1,获取select选中的value值
$("#selectID").val();
2,获取select选中的text的值
$("#selectID").find("option:selected").text()
3,设置select的第几项为当前选中项
$("#selectI ...