jQuery 中 attr() 和 prop() 方法的区别

前几天,有人给 Multiple Select 插件 提了问题: setSelects doesn’t work in Firefox when using jquery 1.9.0 一直都在用 jQuery 1.8.3 的版本,没有尝试过 jQuery 1.9.0 的版本。 于是,开始调试代码,在 1.9.0 的版本中: 1 2 3 4 5 6

制作在线聊天室

先上效果图: 登录 聊天 主要接口: join:用户加入聊天室 users: 发送用户列表 message: 发送聊天信息 server 端主要代码: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

Ubuntu 12.10 VirtualBox 问题

问题: Ubuntu 12.10 unable to find sources of your current kernel 错误信息: 1 2 3 4 5 6 7 Kernel driver not installed (rc=-1908) The VirtualBox Linux kernel driver (vboxdrv) is either not loaded or there is a permission problem with /dev/vboxdrv. Please reinstall the kernel module by executing '/etc/init.d/vboxdrv setup' as root. If it is available in your distribution, you should install the

Ubuntu 安装 QT 4.8

1. 下载并解压安装包 下载:Qt libraries 4.8.4 for Linux/X11 解压: 1 tar xvf qt-everywhere-opensource-src-4.8.4.tar 2. 编译库并安装 Library 1 2 3 4 5 6 7 8 cd qt-everywhere-opensource-src-4.8.4 ./configure //o: opensource make make install 3. 设置 QT Creator 选择:工具 - 选项 - 构建并执行 设置

Ubuntu 12.10 桌面美化及软件安装

1. 安装 QQ 聊天工具 下载安装包 deb wine qq 2012 for linux Ubuntu 安装: 1 sudo dpkg -i WineQQ2012-20121221-Longene.deb 效果图: 2. 安装 cairo dock 工具栏 1 2 3 sudo add-apt-repository ppa:cairo-dock-team/ppa sudo apt-get update sudo apt-get install cairo-dock cairo-dock-plug-ins 效果图: 3. 隐藏 unity 工具栏 安装 CompizConfig Settings M

游玩什么的

游玩,对身为宅男的我来说,顿悟的比较晚。想想大学四年,除了毕业旅游之外,貌似也没去过其他地方了吧。现在想起来多多少少有些遗憾,人,总有顿悟的

Ubuntu 安装配置 vim

安装 1 sudo apt-get install vim 配置 1 sudo vi ~/.vimrc 内容(显示行数、不备份): 1 2 3 source $VIMRUNTIME/vimrc_example.vim set nu set nobackup 资料:简明 Vim 练级攻略