jQuery代码$(function () { $("#moveright").click(function () { var items = $("#select1 option:selected").remove(); ...
分类:
Web程序 时间:
2015-06-08 23:01:58
阅读次数:
230
这两篇博客[1][2]的模式是我心仪的一种科技博客的方式,提供源代码,显示运行图形结果,通俗地介绍理论原理。 直接把结论摘录下来吧。 随机算法如果写成如下形式 randomIndex = random.randint(0, len(items) - 1)则得到一个偏序的结果,...
分类:
编程语言 时间:
2015-06-08 22:58:26
阅读次数:
158
先看一下UIListView添加、插入、删除的机制,再来考虑如何互换两项的位置。
UIListView.h
/* 所有项用一个数组来保存 */
CCArray* _items;
void ListView::pushBackCustomItem(Widget* item)
{
/* 向数组中添加一项 */
_items->addObject(item);
remedy...
分类:
其他好文 时间:
2015-06-07 18:56:01
阅读次数:
337
function TCustomListBox.GetCount: Integer;begin if Style in [lbVirtual, lbVirtualOwnerDraw] then Result := FCount else Result := Items.Count;e...
分类:
其他好文 时间:
2015-06-07 18:38:22
阅读次数:
103
1 # -*- coding: utf-8 -*- 2 3 # Define here the models for your scraped items 4 # 5 # See documentation in: 6 # http://doc.scrapy.org/en/latest/topi.....
分类:
移动开发 时间:
2015-06-05 11:45:30
阅读次数:
187
help-install new software:http://download.eclipse.org/birt/update-site/4.2提示“Cannot complete the install because one or more required items could not ...
分类:
其他好文 时间:
2015-06-03 17:19:20
阅读次数:
121
We will learn how to call Rest Api in SharePoint Online, here is the requirment:
There is a customer list named "Customers", we will output the title of all items in the list.
Introduce Rest Api:
...
import requests,simplejsonfrom requests_ntlm import HttpNtlmAuthp1 = requests.get("http://your_share_point_server_link/_api/Web/Lists(GUID ID#)/items"...
分类:
编程语言 时间:
2015-06-02 20:03:04
阅读次数:
281
Mac下版本控制工具使用Versions很方便。有些库文件中有.a文件需要提交svn,commit时发现没有这个文件被忽略了不能提交。这时可以通过设置,VEIW->SHOW IGNORED ITEMS选中,才会显示,然后才能添加到SVN里。...
分类:
系统相关 时间:
2015-06-02 18:02:02
阅读次数:
155
while重复结构重复结构(repetition strucure)使程序 员可以指定一定条件下可以重复的操作。下列伪代码语句:While there are more items on my shopping listPurchase next item and cross it off my l...
分类:
其他好文 时间:
2015-06-01 16:31:09
阅读次数:
128