摘要: /*查询id以code开头的input标签*/ $("input[id^='code']"); /*查询id以code结尾的input标签*/ $("input[id$='code']"); /*查询id包含code的input标签*/ $("input[id*='code']"); //表格奇偶选 阅读全文
posted @ 2018-01-02 19:39 ぃSolitary_boy 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 以金钱实交(realPay),和使用预存(usePurseFee)为例: if ( realPay.compareTo(usePurseFee) <=0) { XXXXXXX; }else { XXXXXXX; } ***************** 判断的返回值有3种: 1.指定的数值与参数中的数 阅读全文
posted @ 2017-11-23 19:13 ぃSolitary_boy 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 1.java进程查看 # ps -ef |grep java 2.结束进程 # kill -9 端口号 3.返回根目录 cd ~ 4.移动文件 mv /../../xxx.xx /../../ 5.删除文件 rm -f /../../xxx.xx 6.删除文件夹 rm -rf /../../ 7.日 阅读全文
posted @ 2017-11-20 14:57 ぃSolitary_boy 阅读(110) 评论(0) 推荐(0) 编辑