摘要: 一、js跳转页面 location.href = "http://www.xxx.com";location.replace("http://www.xxx.com"); location.replace("http://www.xxx.com"); 二、php跳转页面 1. location和": 阅读全文
posted @ 2022-06-07 15:20 cmooc 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 一、js获取页面url // --获取域名 www.xxx.com var domain = document.domain; var domain = window.location.host; // --获取url,不含参数 http://www.xxx.com/JDYmdyPGph.php/p 阅读全文
posted @ 2022-06-07 14:55 cmooc 阅读(281) 评论(0) 推荐(0) 编辑
摘要: $.ajax({ type: "post", //传输方式 get/post url: "pim/schedule/UserImg", //传输地址(后台地址) data: {'url': url}, //传参 {'url': url}数组形式 dataType: "json", //接收数据形式 阅读全文
posted @ 2022-06-07 14:20 cmooc 阅读(150) 评论(0) 推荐(0) 编辑
摘要: phpqrcode类库官网下载地址:https://sourceforge.net/projects/phpqrcode/ 1、下载一下 phpqrcode 类库 2、取出 phpqrcode.php,放到 vendor文件夹里面 js代码 $('#bdd').click(function (e) 阅读全文
posted @ 2022-06-07 14:03 cmooc 阅读(424) 评论(0) 推荐(0) 编辑
摘要: GitHub: 一、创建token: 1)主页点击头像,选中Settings 2)鼠标滚动到最下边,左侧栏点击developer settings 3)点击左侧栏第三个personal access tokens 点击右侧创建新的token 4)给token起个名,选中gist,点击最下方creat 阅读全文
posted @ 2022-06-07 10:14 cmooc 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1. 隐藏fastadmin表单操作按钮 HTML代码: <table id="table" class="table table-striped table-bordered table-hover table-nowrap" data-operate-edit="{:$auth->check(' 阅读全文
posted @ 2022-06-01 15:49 cmooc 阅读(913) 评论(0) 推荐(0) 编辑
摘要: <script>function sendVerifyMail(){var _url = global.basePath + "oth/find_password_mail.do";var reg = new RegExp("^[a-z0-9A-Z]+[- | a-z0-9A-Z . _]+@([a 阅读全文
posted @ 2022-05-10 16:14 cmooc 阅读(34) 评论(0) 推荐(0) 编辑
摘要: ThinkPHP6.0升级后 使用查询构造器和模型都没有了提示 原因是tp6源码中没有添加注释 找到Model.php 添加 * @method Query where(mixed $field, string $op = null, mixed $condition = null) static 阅读全文
posted @ 2022-03-18 18:56 cmooc 阅读(296) 评论(0) 推荐(1) 编辑
摘要: js常用小代码 1.选中文本复制内容 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <input type="text" id="txt"> doc 阅读全文
posted @ 2022-03-18 18:51 cmooc 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 下载PHPexcel https://files.cnblogs.com/files/itzhangxuhui/PHPExcel.zip PHP生成Excel include_once "./lib/PHPExcel.php"; //实例化PHPExcel类,类似于在桌面上新建一个Excel表格 $ 阅读全文
posted @ 2022-03-18 18:47 cmooc 阅读(96) 评论(0) 推荐(0) 编辑