码迷,mamicode.com
首页 >  
搜索关键字:code    ( 108667个结果
jQuery异步加载数据添加事件
几个月前在一个项目中涉及到树形栏,然后看了很多插件,觉得有点麻烦,于是自己写了一个,写着写着就出问题了。当时项目是通过树形栏进行权限控制的,管理员可以对从数据库去的数据动态生成树形栏进行增删改查操作,可是用$(".XX").click();方法是不行的。1、之前用的是jq1.4.3 ,jq1.7一下...
分类:Web程序   时间:2014-05-07 20:16:47    阅读次数:427
Gstreamer学习
Gstreamer学习笔记----Gstreamer架构设计思想 http://blog.csdn.net/tx3344/article/details/7497434Gstreamer到底是个啥?GStreamer 是一个 基于pipeline的多媒体框架,基于GObject,以C语言写成。应用G...
分类:其他好文   时间:2014-05-07 20:10:53    阅读次数:320
使用Telerik StyleMananger 改变Silverlight Button样式
Telerik 支持更改以下控件样式 System.Windows.Button System.Windows.ScrollViewer System.Windows.CheckBox System.Windows.TextBox System.Windows.RadioButton Sy...
分类:Web程序   时间:2014-05-07 20:10:14    阅读次数:428
hdu 1159
题意:求最长子序列#include#includeusing namespace std;int max(int x,int y){ if(x>y) return x; return y;}int map[1001][1001];char s1[1001],s2[1001];int main(){ ...
分类:其他好文   时间:2014-05-07 20:07:29    阅读次数:202
ubuntu命令行操作mysql常用操作
登陆mysql harvey@harvey-Virtual-Machine:~/ruby/mydiary$ mysql -u root -pEnter password: Welcome to the MySQL monitor. Commands end with ; or \g. 查看所有的数据...
分类:数据库   时间:2014-05-07 20:06:47    阅读次数:452
AJAX跨域请求json数据的实现方法
这篇文章介绍了AJAX跨域请求json数据的实现方法,有需要的朋友可以参考一下我们都知道,AJAX的一大限制是不允许跨域请求。 不过通过使用JSONP来实现。JSONP是一种通过脚本标记注入的方式,它是可以引用跨域URL的js脚本,不过需要提供一个回调函数(必须在您自己的页面上),因此,你可以自己处...
分类:Web程序   时间:2014-05-07 20:06:03    阅读次数:454
Instant Django 1.5 Application Development Starter
Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.Model: The application dataView: which data ...
分类:移动开发   时间:2014-05-07 20:02:08    阅读次数:453
android URL中文和空格会报错解决方案
url = URLEncoder.encode(urlStr,"utf-8").replaceAll("\\+", "%20");//encode会将空格替换为+号,所有要讲+号替换为空格的转义%20url = url.replaceAll("%3A", ":").replaceAll("%2F",...
分类:移动开发   时间:2014-05-07 20:00:40    阅读次数:363
UserDefaultes 数据存储使用
#import "RootViewController.h"@interface RootViewController ()@end@implementation RootViewController{ UILabel *txtInteger; UILabel *txtFloat; ...
分类:其他好文   时间:2014-05-07 19:59:59    阅读次数:461
linux shell 命令学习(5) xxd- make a hexdump or do the reverse.
对于标准输入或者给定的文件,显示其16进制的内容。也可以反过来进行转换。 xxd -h[elp] xxd [options] [infile [outfile]] xxd -r[evert] [options] [infile [outfile]] 如果没有...
分类:系统相关   时间:2014-05-07 19:59:25    阅读次数:490
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!