1、jquery获取当前选中select的text值
var checkText=$("#slc1").find("option:selected").text();
2、jquery获取当前选中select的value值
var checkValue=$("#slc1").val();
3、jquery获取当前选中select的索引值
var index=$("#slc1 ").get(0).selectedIndex;
4、jquery设置索引值为1的项为当前选中项
$("#slc1 ").get(0).selectedIndex=1;
5、jquery设置value值2的项为当前选中项
$("#slc1 ").val(2);
6、jquery设置text值为"青藤园"的项为当前选中项
$("#slc1 option[text='青园w']").attr("selected",true);
7、为指定select下拉框追加一个option(追加到在末尾)
$("#slc2").append(""+i+"");
8、为制定select下拉框插入一个option(插入到第一个位置)
$("#slc2").prepend("请选择");
9、jquery删除select下拉框的最后一个option
$("#slc2 option:last").remove();
//Integer.parseInt(s, radix) radix设置为10,表示10进制,16表示16进制啦
int i = Integer.parseInt(a, 16);
System.out.println(i);//输出5488661
/* var map = {}; // Map map = new HashMap();
map[key] = value; // map.put(key, value);
var value = map[key]; // Object value = map.get(key);
var has = key in map; // boolean has = map.containsKey(key);
delete map[key]; // map.remove(key); */
#js保留小数点
var num=22.127456;
alert( num.toFixed(2));
#时间戳转换字符串
function add0(m){return m<10?'0'+m:m }
function format(shijianchuo)
{
//shijianchuo是整数,否则要parseInt转换
var time = new Date(shijianchuo);
var y = time.getFullYear();
var m = time.getMonth()+1;
var d = time.getDate();
var h = time.getHours();
var mm = time.getMinutes();
var s = time.getSeconds();
return y+'-'+add0(m)+'-'+add0(d)+' '+add0(h)+':'+add0(mm)+':'+add0(s);
}
#添加滚动条
$(".abckuaiconji").slimScroll({
height: "256px"
})