上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: window.location.href="${ctx }/wx/reservation/content?shopid="+shopid+"&&openid=${openid_wx}"; 阅读全文
posted @ 2015-12-11 21:59 白金05 阅读(153) 评论(0) 推荐(0)
摘要: 1.利用Math.round()的方法:两个int型的数相除,结果保留小数点后两位:int a=1188;int b=93;double c;c=(double)(Math.round(a/b)/100.0);//这样为保持2位打印结果:c=0.12c=new Double(Math.round(a... 阅读全文
posted @ 2015-12-11 21:57 白金05 阅读(459) 评论(0) 推荐(0)
摘要: IF(g.give_integral > -1, g.give_integral, c.goods_price)这个函数的结果要根据g.give_integral的值,如果g.give_integral大于-1函数值就是g.give_integral,否则函数值就是c.goods_price。SEL... 阅读全文
posted @ 2015-12-11 21:53 白金05 阅读(161) 评论(0) 推荐(0)
摘要: jQuery中的$.getJSON( )方法函数主要用来从服务器加载json编码的数据,它使用的是GET HTTP请求。使用方法如下:$.getJSON( url [, data ] [, success(data, textStatus, jqXHR) ] )url是必选参数,表示json数据的地... 阅读全文
posted @ 2015-12-11 21:19 白金05 阅读(563) 评论(0) 推荐(0)
摘要: package cn.stopgo.tool;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.io.UnsupportedEncodingExc... 阅读全文
posted @ 2015-12-11 21:16 白金05 阅读(300) 评论(0) 推荐(0)
摘要: var longtitude = 0;var latitude = 0;function GetPostion() { //通过百度获取经纬度 var address = "具体的地理位置 "; var url = "http://api.map.baidu.com/geocoder/v2/?a... 阅读全文
posted @ 2015-12-11 21:15 白金05 阅读(322) 评论(0) 推荐(0)
摘要: shift+alt+r 实现变量全部改名 阅读全文
posted @ 2015-12-11 21:13 白金05 阅读(264) 评论(0) 推荐(0)
摘要: select distinct CAST(value as signed) valueprice,CAST(value as signed) valueid from app_coupon 阅读全文
posted @ 2015-12-11 21:11 白金05 阅读(1511) 评论(0) 推荐(0)
摘要: (SELECT p.*,(SELECT CONCAT(m.name,m.id) FROM service_fastfix_category m WHERE m.id=SUBSTR(p.id,1,4)) AS parentcode,(SELECT GROUP_CONCAT(ee.name)FROM e... 阅读全文
posted @ 2015-12-11 21:07 白金05 阅读(264) 评论(0) 推荐(0)
摘要: 1 isnull(expr) 的用法:如expr 为null,那么isnull() 的返回值为 1,否则返回值为 0。 2IFNULL(expr1,expr2)的用法:假如expr1 不为 NULL,则 IFNULL() 的返回值为 expr1; 否则其返回值为 expr2。IFNULL()的返回值... 阅读全文
posted @ 2015-12-11 09:26 白金05 阅读(264) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 下一页