1. $("#select_id").change(function(){//code...});
//为Select添加事件,当选择其中一项时触发
2. var checkText=$("#select_id").find("option:selected").text();
//获取Select选择的Text
3. var checkValue=$("#select_id").val...
分类:
Web程序 时间:
2015-02-28 21:47:19
阅读次数:
178
语法解释:
复制代码代码如下:
1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发
2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text
3. var checkV...
分类:
Web程序 时间:
2015-02-28 21:45:40
阅读次数:
268
A graph which is connected and acyclic can be considered a tree. The height of the tree depends on the selected root. Now you are supposed to find the...
分类:
其他好文 时间:
2015-02-27 09:56:06
阅读次数:
110
最近在做一个仿百度网盘的网页小应用,找到了一个优雅简洁的分页插件,和百度搜索的分页很相似,对他进行了二次封装,拿出来跟大家分享下插件源码/** * This jQuery plugin displays pagination links inside the selected elements. *...
分类:
编程语言 时间:
2015-02-24 21:00:17
阅读次数:
325
在drawable/xxx.xml中配置,通过配置selector,可以使系统运行时根据控件对象的状态使用相应的图片、文字等。android:state_selected 控件选中状态,可以为true或falseandroid:state_focused 控件获得焦点状态,可以为true或false...
分类:
移动开发 时间:
2015-02-20 19:44:53
阅读次数:
170
deque 的插入操作不一定有 vector 快
#include
#include
#include
#include
using namespace std;
#define NOT_SELECTED 0
#define SELECTED 1
#define SIZE 6001
vector relations[SIZE];
bool visited[SIZE];
int DP[...
分类:
其他好文 时间:
2015-02-18 22:07:01
阅读次数:
310
AnchoredFloatViewFloat View over TableView to indicate selected row directionFloat View 可以用来指示 TableView 中被选择的cell.This is a Float View to indicate th...
分类:
其他好文 时间:
2015-02-15 21:46:15
阅读次数:
189
百度出来的代码都是这样的:1 $('#test option[text="b"]').attr("selected",true);或1 $('#test').find('option[text="b"]').attr("selected",true);然而,在我的代码中却不起作用,不知原因为何!终于...
分类:
Web程序 时间:
2015-02-13 14:34:37
阅读次数:
332
static void main(Args args){ FormDataSource formDataSource;;if(args.record().TableId == tablenum(MBSJEMJournalTable)){ // assigning the selected r...
分类:
其他好文 时间:
2015-02-12 16:04:54
阅读次数:
117
比例混合分布(Scale Mixture Distribution)
混合分布是来自其他随机变量的集合构成的随机变量的概率分布:一个随机变量是根据给定的概率从集合随机选取的,然后所选随机变量的值就得到了( first, a random variable is selected by chance from the collection according to given probabil...
分类:
其他好文 时间:
2015-02-10 15:27:56
阅读次数:
246