
前端
文章平均质量分 54
Depthslowly
好好经营自己的小空间
展开
-
自定义上传文件"组件"
前端:注意顺序不要变哈<Component> <input type="hidden" id="image" name="image"> <img style="width: 40%;display: block" class="imagePreview" src="{{asset("assets/img/no_image.png")}}"...原创 2019-06-03 09:07:02 · 303 阅读 · 0 评论 -
php正则爬取html标签
1、按类名匹配div"/<div class=\"user_dazi_info\".*?>.*?<\/div>/ism";2、简单匹配标签'/<strong>(.*)<\/strong>/U';3、匹配表格之类的标签'/<thead[^>]*>(.*?) <\/thead>/si';4、原创 2018-02-14 23:35:42 · 2474 阅读 · 0 评论 -
ajax无刷新请求下载文件
可实现先弹窗验证密码,密码正确即可下载资料:$('a[id="down-alert"]').click(function(e){ var flag=false; var key = prompt("请输入简历下载码:",""); if (key != null){ $.ajax({ type : "get", ...原创 2018-02-14 17:53:21 · 400 阅读 · 0 评论 -
为图片边缘添加光效
.headBox{ position: relative;}.headImg{ width: 100px; border-radius: 10px; position: absolute; z-index: 99;}.headImgBg{ z-index: -99; /*position: absolute;*/ width:...原创 2018-02-14 11:04:54 · 776 阅读 · 0 评论 -
jq确认删除
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>$('button[id=deleteButton]').click(function(){ if(confirm("确认删除吗?")){ return true; } return fa...原创 2018-02-11 23:56:48 · 440 阅读 · 0 评论 -
js预览图片
1、单张图片<input name="teacherImg" id="file" onchange="preImg(this.id,'imgPre');" type="file"><img id="imgPre" src="{{config('basicinfo.default_image')}}"/>function preImg(原创 2018-02-11 23:54:27 · 429 阅读 · 0 评论 -
php swoole 使用教程
长链接可是个好东西,赶紧mark下来第一步当然是要装php拓展啦,php也不是啥都能做到的,不行的时候就得请外援咧pecl install swooleduang~安装完了,在php.ini里面加上拓展,检查以下是不是已经成功安装,执行下面这个命令,或者看看phpinfo都可以extension="swoole.so"php -m问题:1、端口已经使用怎么办???...原创 2019-05-22 21:05:06 · 845 阅读 · 0 评论