摘要:
1.使用VS创建项目 2.右键项目选择属性,进入C/C++ => 常规 => 附加包含目录,添加D:\mysql-5.7.19-win64\include(根据自己安装的MySQL版本及地址填写) 3.在属性页,进入链接器 => 常规 => 附加库目录,添加D:\mysql-5.7.19-winx6 阅读全文
摘要:
django django基于MTV模式 安装django -pip3 install django #创建django工程 django-admin.exe startproject 工程名称 工程目录结构(例如mysite) mysite -mysite #对整个程序进行配置 -init.py 阅读全文
摘要:
JS正则 test -判断字符串是否符合规定的正则 例: var rep = /\d+/ 注:javascript正则表达式格式为/../ rep.test("dfafadfadf552dfdafds")结果为true exec -获取匹配的数据 rep = /\d+/ str = "jsafkaj 阅读全文
摘要:
参见网址:http://jquery.cuishifeng.cn/jQuery: 转换: jquery对象[0] => Dom对象 $(Dom对象) => jquery对象 选择器,直接找到某个或者某类标签 1.id = "i1" $("#i1")找到id="i1"的标签 2.class <div 阅读全文
摘要:
http://www.cnblogs.com/wupeiqi/articles/5602773.html 阅读全文
摘要:
在head标签中设置style属性: height:48px;<!-- 代表颜色与位置 -->编写css样式: 1.标签style属性 2.写在head里面,style标签中写样式 - id 选择器 #i1{background-color:red;height:48px;} - class选择器 阅读全文
摘要:
HTML 1.一套规则,浏览器认识的规则 2.开发者: 学习html规则 开发后台程序 - 写html文件(充当模板的作用) -数据库获取数据,然后替换到html文件的指定位置(web框架) 3.本地测试 - 找到文件路径,直接浏览器打开 - pycharm打开测试 4.编写html文件 - doc 阅读全文
摘要:
http://www.cnblogs.com/alex3714/articles/5950372.html 阅读全文
摘要:
参见网址:http://www.cnblogs.com/alex3714/articles/6217453.html 阅读全文