Load var data = []; var viewModel = { vendors:
ko.observableArray(data)};ko.applyBindings(viewModel);$(function () { // on this
click event, ...
分类:
其他好文 时间:
2014-05-08 21:03:59
阅读次数:
282
1 jQuery.fn.single_double_click =
function(single_click_callback, double_click_callback, timeout) { 2 return
this.each(function(){ 3 var clicks...
分类:
数据库 时间:
2014-05-08 20:54:46
阅读次数:
373
1.简介操作 //设置注册值 private void Button_Click(object
sender, RoutedEventArgs e) { //路径及间隔符号要正确 //1.如果指定路径不存在,则创建...
分类:
其他好文 时间:
2014-05-08 20:53:22
阅读次数:
351
private void button1_Click(object sender, EventArgs
e) { //OpenFileDialog dlg = new OpenFileDialog(); OpenFileDialog fileDialog1 =
new OpenFileDialog....
分类:
其他好文 时间:
2014-05-08 13:27:26
阅读次数:
229
private void button1_Click(object sender, EventArgs
e) { //OpenFileDialog dlg = new OpenFileDialog(); OpenFileDialog dlg = new
OpenFileDialog(); if...
分类:
其他好文 时间:
2014-05-07 20:28:32
阅读次数:
295
几个月前在一个项目中涉及到树形栏,然后看了很多插件,觉得有点麻烦,于是自己写了一个,写着写着就出问题了。当时项目是通过树形栏进行权限控制的,管理员可以对从数据库去的数据动态生成树形栏进行增删改查操作,可是用$(".XX").click();方法是不行的。1、之前用的是jq1.4.3
,jq1.7一下...
分类:
Web程序 时间:
2014-05-07 20:16:47
阅读次数:
427
solution1.Tick the primary key 1.right click on
the Id of the entity in dataset schema. 2.Edit Key 3.Tick the Primary Key
分类:
其他好文 时间:
2014-05-07 19:18:56
阅读次数:
362
view: $(document).ready(function() { var
ss="asdff"; $(".check").click(function(){ alert("OK"); $.ajax({ ...
分类:
Web程序 时间:
2014-05-07 19:09:38
阅读次数:
349
OJ题目:click here~~
题目分析:四塔问题,n个盘,从塔1,到塔4,至少需要多少步。
这里n的范围是( 0 , 50000 ] ,所以不能直接用四塔算法。这里找规律就可以了。
AC_CODE
const int mod = 10000;
const int Max_N = 50002;
int dp[Max_N];
int main()
{
int i , j = ...
分类:
其他好文 时间:
2014-05-07 08:18:09
阅读次数:
226
OJ题目:click here~~
题目分析:1……n按顺序围成一个圈,1与n相邻。交换相邻两个数算1步。至少需要多少步,得到一个逆方向的1……n的圈。
分两半,使用冒泡排序,排成逆序的交换次数之和即为结果。
AC_CODE
int f(int n){
return n*(n - 1)/2;
}
int main(){
int n , t;
cin >> t;
...
分类:
其他好文 时间:
2014-05-06 23:15:55
阅读次数:
301