1、获取选中select的value和text,html通过以下script代码s来获取选中的value和text$("#mySelect").val(); //获取选中记录的value值$("#mySelect option:selected").text(); //获取选中记录的text值 2、...
分类:
Web程序 时间:
2015-08-14 01:00:11
阅读次数:
126
iptalbes -F-F, --flush [chain] Flush the selected chain (all the chains in the table if none is given). This is equivalent to deleting all t...
分类:
其他好文 时间:
2015-08-13 19:33:17
阅读次数:
163
centos 安装redis时报you selected does not support x86-64 instruction set解决方法make CFLAGS="-march=x86-64"返回的错误中不支持什么 就将march 设置成什么
分类:
其他好文 时间:
2015-08-13 17:24:48
阅读次数:
114
转自:http://blog.sina.com.cn/s/blog_544c72960101bvl3.html这是一个游标的使用例子.但是其中有几点需要注意,就是为什么要加入declareCONTINUEHANDLERFORSQLSTATE'02000'SETtmpname=null;这样的一句话....
分类:
数据库 时间:
2015-08-13 01:09:32
阅读次数:
373
1.波浪效果是在tableView 上的cell上实现的,在cell.m中写如下代码:- (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated....
分类:
其他好文 时间:
2015-08-11 20:40:41
阅读次数:
124
$("#communityId").change( function(){ var id = $(this).children('option:selected').val(); //当前选择项的值 var url = "sUserorderController.do?getCampaig...
分类:
其他好文 时间:
2015-08-11 16:00:34
阅读次数:
674
1 UIImage *discussSelectedImage = [UIImage imageNamed:@"discuss_selected"];//设置图片不渲染2 discussSelectedImage = [discussSelectedImage imageWithRender...
分类:
其他好文 时间:
2015-08-11 15:29:38
阅读次数:
101
Jquery操作下拉框(DropDownList)想必大家都有所接触吧,下面与大家分享下对DropDownList进行取值赋值的实现代码1. 获取选中项:获取选中项的Value值:$('select#sel option:selected').val();或者$('select#sel').find...
分类:
Web程序 时间:
2015-08-11 11:34:18
阅读次数:
126
Depot文件怎么安装呢?先su到root用户,然后swinstall –s /home/…… 把路径和文件名打全,回车,出现一个带菜单的字符界面,可用Tab切换,先在下面的那个“框”里回车一下,选中要安装的条目(出现1 of 1 selected),然后Tab到菜单上去,使用方向键移动光标到Act...
分类:
其他好文 时间:
2015-08-10 19:37:39
阅读次数:
1026
.not()----------.hasClass() has()
一个div同时有select selected属性:
$(parentDiv).find('.select').not('.selected').css("background",'#333');
$(parentDiv).find('.select').hasClass('selected').css("backgroun...
分类:
Web程序 时间:
2015-08-07 13:24:17
阅读次数:
116