会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
栋H栋
博客园
首页
新随笔
联系
订阅
管理
2023年3月10日
PHP的 rtrim() 函数,去除字符串右侧指定字符串的使用疑问
摘要: <?php $str1 = '<div class="swiper-slide"><div> <img src="uploads/image/20210831/1630375137.jpg" alt=""> </div></div><div class="swiper-slide">'; var_d
阅读全文
posted @ 2023-03-10 17:06 栋H栋
阅读(106)
评论(0)
推荐(0)
编辑
2022年2月16日
Layui表格,序号列自动产生序号
摘要: HTML部分: 创建一个表格容器 <table class="layui-hide" id="table" lay-filter="table"></table> js渲染部分: <script> layui.use(['table','form'], function(){ let table =
阅读全文
posted @ 2022-02-16 14:09 栋H栋
阅读(3054)
评论(0)
推荐(0)
编辑
2021年7月29日
百度地图,移动轨迹
摘要: <!DOCTYPE html><html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="initial-scale=1.0, us
阅读全文
posted @ 2021-07-29 16:41 栋H栋
阅读(91)
评论(0)
推荐(0)
编辑
替换掉一段内容里所有的img标签
摘要: var s = '<img src="xxxx.jpg" alt="">afaf<img src="xxxx.jpg" alt="">'; s = s.replace(/(<img[\s\S]+?)src=(['"][^'"]+)['"]/ig, "$1 src='1.jpg'&qu
阅读全文
posted @ 2021-07-29 16:37 栋H栋
阅读(177)
评论(0)
推荐(0)
编辑
给元素各个位置追加元素
摘要: 一、在元素内部/外部追加元素append,prepend:添加到子元素before,after:作为兄弟元素添加html:复制代码 代码如下:<div id="content"><p>在我的后面追加一条新闻</p></div>Javascript:复制代码 代码如下:<script type="te
阅读全文
posted @ 2021-07-29 16:33 栋H栋
阅读(328)
评论(0)
推荐(0)
编辑
2021年6月28日
php获取今日、昨日、最近7天、最近30天等时间的方法
摘要: date('Y-m-d',timestamp); //输出年-月-日date('Y-m-d H:i:s',timestamp); //输出年-月-日 时:分:秒 //php获取今天日期date("Y-m-d",strtotime("today")); //strtotime(‘today’)输出今天
阅读全文
posted @ 2021-06-28 10:29 栋H栋
阅读(1886)
评论(0)
推荐(0)
编辑
2021年6月23日
php 将字符串数组按照ascii码排序
摘要: 博主帮我解决了大问题,感谢!记录这个坑 (遇坑这个接口文档没有PHP签名的示例,而且也不是根据键值和value值进行升序、降序,是比较的每个字符串的每个字符的ACSII值,一直比较出大小为止) // 比较两串字符的ascii码大小 function check_ascii(string $str1,
阅读全文
posted @ 2021-06-23 11:35 栋H栋
阅读(760)
评论(0)
推荐(0)
编辑
2021年6月3日
鼠标移入,变放大图片的按钮样式
摘要: 例子: html部分: <img src = "../1.jpg" id = "img1"> CSS部分: #img1{ cursor: zoom-in; //放大图标 cursor: zoom-out; //缩小图标 } 效果图: 放大图标: 缩小图标:
阅读全文
posted @ 2021-06-03 10:38 栋H栋
阅读(177)
评论(0)
推荐(0)
编辑
2020年12月12日
php 拆分的 string里包含“\2”或“\1”符号(“”或者“”)
摘要: PHP里用chr(2)或者chr(1)分割字符串 $str1 = '1'.chr(2).'2'.chr(2).'3'; $str2 = '1'.chr(1).'2'.chr(1).'3'; 返回值显示为: str1: "123" str2: "123" 返回值js拆分成数组的时候要写成: v
阅读全文
posted @ 2020-12-12 14:38 栋H栋
阅读(1233)
评论(0)
推荐(0)
编辑
2020年12月11日
清除float浮动
摘要: style="clear:both;"
阅读全文
posted @ 2020-12-11 16:03 栋H栋
阅读(67)
评论(0)
推荐(0)
编辑
下一页