摘要:
商品详细: //cookie零时存购物车 function addcar() { //判断cookie是否有值 if (getCookie("shopcar") == null) { //数组类型 setCookie("shopcar", "[]"); } //这里举例子,值写死 var obj = 阅读全文
摘要:
1.前台分页功能自己先做出来 在前台上传文件时,需要form表单提交或者使用a标签 我这里是a标签,给href属性赋值地址 此方法需要在每个分页操作中调用,以改变当前页(index1)的值 //导出 function daoshu() { $("#a").prop("href", "http://l 阅读全文
摘要:
1. SqlServer创建存储过程: --创建存储过程 create proc sp_Show ( @index int, --当前页 @size int, --每页大小 @totalcount int out, --总数据数 @pagecount int out --总页数 ) as begin 阅读全文