selected device is not a touchscreen I understand...
分类:
其他好文 时间:
2014-09-05 18:14:41
阅读次数:
386
Sorry, the image you selected is not compatible with your hardware configuration. Please choose another image. CentOS 7.0-64 - DO NOT USE does not ha....
分类:
其他好文 时间:
2014-09-04 22:10:30
阅读次数:
217
select选中索引有好多方式,$('#someId').find('option:selected').selectedIndex;$('#someId').find('option:selected').attr('selectedIndex');这两种方式取不到索引值$('#someId')....
分类:
Web程序 时间:
2014-09-02 19:50:15
阅读次数:
194
语法解释:1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发2. var checkText=$("#select_id").find("option:selected").text(); //获取Se...
分类:
Web程序 时间:
2014-08-29 12:54:27
阅读次数:
313
获取一组radio被选中项的值
var item = $('input[@name=items][@checked]').val();
获取select被选中项的文本
var item = $("select[@name=items] option[@selected]").text();
select下拉框的第二个元素为当前选中值
$('#select_id')[0].sele...
分类:
Web程序 时间:
2014-08-28 17:01:10
阅读次数:
268
var name = $("#DropDownList1 option:selected").val(); //获取dropdownlist 里面选中的值var name1 = $("#DropDownList1").text(); //获取dropdownlist 里面所用的值$("#ddl")....
分类:
Web程序 时间:
2014-08-27 14:37:17
阅读次数:
261
[ora11@lixora ~]$ !sql
sqlplus / as sysdba
SQL*Plus: Release 11.2.0.1.0 Production on Wed Aug 27 09:50:54 2014
Copyright (c) 1982, 2009, Oracle. All rights reserved.
Connected to:
Oracle Datab...
分类:
其他好文 时间:
2014-08-27 13:08:18
阅读次数:
311
$("#selectId option:last").prop("selected", 'selected');$("#selectId option").eq(0).attr("selected", true);
分类:
Web程序 时间:
2014-08-23 01:03:29
阅读次数:
267
在点击进入另一个activity时颜色改变是想在游戏攻略中实现的,但查资料找不到结果,今天突发灵感终于实现了。
我们大多数情况下都是自己写adapter,在写的那个Class中定义一个 boolean 型的 IsJump。然后在 OnItemClickListener 中 把 IsJump 设置为ture,再adapter2.notifyDataSetChanged(); 在Adapter...
分类:
其他好文 时间:
2014-08-22 22:34:32
阅读次数:
243
$(function () { $('#selected-plays > li').addClass('horizontal'); $('#selected-plays li:not(.horizontal)').addClass('sub-level'); $('a[href^=...
分类:
Web程序 时间:
2014-08-22 07:06:25
阅读次数:
231