码迷,mamicode.com
首页 >  
搜索关键字:ice    ( 9476个结果
[b8>150D050103076E070E7E170B131416030D056E070F0D]
JS中数组的操作 1、数组的创建 var arrayObj = new Array(); //创建一个数组 var arrayObj = new Array([size]); //创建一个数组并指定长度,注意不是上限,是长度 var arrayObj = new Array([element0[, ...
分类:其他好文   时间:2016-11-14 09:49:36    阅读次数:162
jQuery自定义漂亮的下拉框插件8种效果
jquery美化选择器实例有:边框、下划线、 伸缩 、滑动、 覆盖、 旋转、 弹出层选择 、环形效果。 在线预览 实例代码 <body class="demo-1"> <div class="container"> <header class="codrops-header"> <h1> 自定义选择 ...
分类:Web程序   时间:2016-11-14 09:41:29    阅读次数:212
搭建web服务器环境
一、 安装apache 安装好之后测试:浏览器地址栏输入:localhost,若弹出"It works!"表明已成功安装。 管理方式:1、通过Apache自带的镜像管理器;2、windows服务管理:在运行里面输入:services.msc;3、在dos(cmd下)以命令行的形式进行管理(httpd ...
分类:Web程序   时间:2016-11-14 07:36:50    阅读次数:222
初入javascript知识点(七)
用jQuery重写之前的student数据 html <!DOCTYPE html> 姓名: 年龄: 性别: 添加 JS jQuery写轮播 handlebars 模版引擎 ...
分类:编程语言   时间:2016-11-14 02:16:21    阅读次数:213
Centos 7 安装 和 卸载 Mysql5.7(压缩包)
今天装的了mysql,遇到了很多问题,好在最后一一解决了,现在记录在此,防止日后老路重走。。。 1、下载 当然是去官网,下一个linux下的版本,64位的 tar.gz,好吧这里贴个名字——【mysql-5.7.16-linux-glibc2.5-x86_64.tar.gz】, 我今天是在官网的【D ...
分类:数据库   时间:2016-11-14 01:43:55    阅读次数:805
模拟购物车表格
<div id="arae"> <table border="1" style="text-align: center"> <thead> <th>商品编号</th> <th>商品名称</th> <th>商品数量</th> <th>商品单价</th> <th>商品总价</th> <th>操作</th ...
分类:其他好文   时间:2016-11-14 00:53:44    阅读次数:139
错误:未启用当前数据库的SQL Server Service Broker,因此查询通知不受支持。如果希望使用通知,请为此数据库启用 Service Broker。
解决方法: 打开SQL Server,新建查询: ALTER DATABASE 数据库名 SET NEW_BROKER WITH ROLLBACK IMMEDIATE;ALTER DATABASE 数据库名 SET ENABLE_BROKER; 转自:http://www.cnblogs.com/I ...
分类:数据库   时间:2016-11-13 22:03:46    阅读次数:340
[LeetCode]413 Arithmetic Slices
A sequence of number is called arithmetic if it consists of at least three elements and if the difference between any two consecutive elements is the ...
分类:其他好文   时间:2016-11-13 17:02:55    阅读次数:259
文本窗口抖动和位移效果
publicvoid onClick(View v){ Animation shake =AnimationUtils.loadAnimation(this, R.anim.shake); findViewById(R.id.pw).startAnimation(shake); } anim\sha ...
分类:其他好文   时间:2016-11-13 11:18:28    阅读次数:158
EL表达式的算术运算
一个例子--乘法运算 ${book.bookCount * book.bookPrice } 两个不同对象的EL表达式的算术运算同理 ${student.studentNum * book.bookPrice } 其他算数运算等同 ...
分类:其他好文   时间:2016-11-13 01:40:10    阅读次数:147
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!