2017年11月10日

$.ajax()方法详解

摘要: jquery中的ajax方法参数总是记不住,这里记录一下。 1.url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址。 2.type: 要求为String类型的参数,请求方式(post或get)默认为get。注意其他http请求方法,例如put和delete也可以使用,但仅部分 阅读全文

posted @ 2017-11-10 11:38 叶少翔 阅读(108) 评论(0) 推荐(0)

2017年11月9日

git 常用命令

摘要: 1.分支# 查看本地分支$ git branch# 查看远程分支$ git branch -a# 创建分支$ git branch pms50201# 创建并进入分支$ git checkout -b pms50201这相当于执行下面这两条命令:$ git branch pms50201$ git 阅读全文

posted @ 2017-11-09 19:14 叶少翔 阅读(190) 评论(0) 推荐(0)

PHP打印日志类

摘要: /** * 打印日志文件 * @author HaoChen * @module_name 日志指定存放目录 * @notice_header 打印的日志信息 * @notice_body 说明性的文字,可以为空 * 2017-01-08 */ class YinFunc_Log{ public s 阅读全文

posted @ 2017-11-09 18:50 叶少翔 阅读(1406) 评论(0) 推荐(0)

导航