会员
周边
众包
新闻
博问
闪存
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
我是帅聪
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
15
16
17
18
19
20
21
下一页
2020年5月13日
如何用js关闭一个窗口,window.close()好像不行。
摘要: window.close()关闭一个窗口无效,那应该用什么方法?
阅读全文
posted @ 2020-05-13 13:20 留下成长的足迹
阅读(568)
评论(1)
推荐(1)
2020年4月28日
必填项前面加个红星,用css来添加,不用html
摘要: css: <style> span::before{ content: "*"; color: #ff0000; font-size: 25px; position: relative; top: 10px; } </style> <span>必填项</span> 如果把红星加到后面,css写为sp
阅读全文
posted @ 2020-04-28 14:02 留下成长的足迹
阅读(1537)
评论(0)
推荐(0)
2020年4月27日
js动态在页面中加载easyui的类,新加的easyui没有渲染,如何渲染加载的easyui的控件?
摘要: $.parser.parse("$('#需要渲染的内容').parent()")
阅读全文
posted @ 2020-04-27 14:14 留下成长的足迹
阅读(232)
评论(0)
推荐(0)
2020年4月26日
String.Format('{0,4:D3}', num)的作用。
摘要: String.Format('{0,4:D3}',num)是把num转换为一个字符串,字符串长度为4,把num转换为长度为三位的整数,不够四位的用0补够四位。 参考文档:https://www.jb51.net/article/57216.htm 官方文档:https://docs.microsof
阅读全文
posted @ 2020-04-26 16:11 留下成长的足迹
阅读(666)
评论(0)
推荐(0)
2020年4月24日
如何将div中的内容居中
摘要: 原文地址: https://blog.csdn.net/liuhailiuhai12/article/details/55252283 1. .parent{ width:400px; height:500px; display:flex; justify-content: center; alig
阅读全文
posted @ 2020-04-24 11:43 留下成长的足迹
阅读(796)
评论(0)
推荐(0)
2020年4月23日
npm改为淘宝镜像
摘要: 1.npm config ls //查看npm的配置文件 会发现里面的registry是npm原始的镜像:https://registry.npmjs.org/ 2.永久修改为淘宝镜像。 npm config set registry https://registry.npm.taobao.org
阅读全文
posted @ 2020-04-23 10:30 留下成长的足迹
阅读(524)
评论(0)
推荐(0)
2020年4月21日
html中table中td内容换行
摘要: 1.table标签中添加table-layout:fixed <table style="table-layout:fixed"> </table> 2.td标签中样式添加宽度,width:100px;换行模式:word-break:break-all;//允许在单词内换行。,word-break:
阅读全文
posted @ 2020-04-21 18:22 留下成长的足迹
阅读(9896)
评论(0)
推荐(0)
2020年4月20日
git 切换文件夹路径
摘要: cd D:\gitStydy //切换到D盘的gitStudy文件夹 。change direction 简写为cd。 参考地址:https://www.cnblogs.com/SamWeb/p/6516784.html
阅读全文
posted @ 2020-04-20 18:57 留下成长的足迹
阅读(7511)
评论(0)
推荐(0)
git经常使用的命令
摘要: 下载地址,淘宝镜像:https://npm.taobao.org/mirrors/git-for-windows/ 0. git helper -a //查看全部git子命令 git --version //查看git版本 1. git checkout -b 'branchName' //创建一个
阅读全文
posted @ 2020-04-20 11:43 留下成长的足迹
阅读(356)
评论(0)
推荐(0)
2020年4月19日
将div标签中的table水平居中
摘要: <div> <table></table> </div> <style> div { text-align: 'center'; } table { margin: auto } </style>
阅读全文
posted @ 2020-04-19 18:39 留下成长的足迹
阅读(490)
评论(0)
推荐(0)
上一页
1
···
15
16
17
18
19
20
21
下一页
公告