baozhengrui

导航

上一页 1 ··· 8 9 10 11 12

2022年5月25日 #

git 上传

摘要: git init git config --global username “名字” git config --global user.email "youxiang" git status git add . git commit -m "说明" git remote -v git remote 阅读全文

posted @ 2022-05-25 15:58 芮艺 阅读(13) 评论(0) 推荐(0) 编辑

git安装及下载慢问题

摘要: #git 下载慢 使用下面的链接,选择 https://registry.npmmirror.com/binary.html?path=git-for-windows/ 不带rc的文件进行下载,并选择与电脑匹配的文件即可 转载: https://blog.csdn.net/qq_40690225/a 阅读全文

posted @ 2022-05-25 15:54 芮艺 阅读(812) 评论(0) 推荐(0) 编辑

2022年5月23日 #

设置span的宽度并且是文字均匀沾满span标签

摘要: ###设置宽度 <span style="width=100px; display: inline-block;">dddd</span> ###沾满标签 <span style="width: 100px; display: inline-block; text-align-last: justi 阅读全文

posted @ 2022-05-23 10:23 芮艺 阅读(443) 评论(0) 推荐(0) 编辑

2022年5月18日 #

jquery 点击checkbox后面的文字选中checkBox复选框

摘要: ##方法一 将input和label放在同一个标签p中 将lable的for属性值等于input的id属性值 即可以实现点击label同时控制input的checkbox <p> <input name="fittype" type="checkbox" value="8" id="check"/> 阅读全文

posted @ 2022-05-18 10:41 芮艺 阅读(204) 评论(0) 推荐(0) 编辑

2022年5月7日 #

git上传代码

摘要: https://www.runoob.com/git/git-basic-operations.html git config --global user.name 名字 git config --global user.email 邮箱 git status //查看代码状态 git diff / 阅读全文

posted @ 2022-05-07 09:04 芮艺 阅读(15) 评论(0) 推荐(0) 编辑

2022年5月6日 #

jQuery中导出excel时,跳转新空白页,不要跳转怎么改

摘要: 导出excel时,偶尔会出现跳转到一个新页面载导出excel js中用window.open()做跳转 不想要它做跳转到新的页面,需要加一个隐藏的iframe <iframe name='hidden_frame" id="hidden_frame" style="display: none;" > 阅读全文

posted @ 2022-05-06 15:52 芮艺 阅读(133) 评论(0) 推荐(0) 编辑

window.open 基本用法

摘要: #简介 window.open()支持环境:JavaScript1.0+/JScript1.0+/Nav2+/IE3以上版本+/Opera3+Fireforx ##基本语法:window.open(pageURL,name,parameters) 其中: pageURL 为子窗口路径 name 为子 阅读全文

posted @ 2022-05-06 14:33 芮艺 阅读(1198) 评论(0) 推荐(0) 编辑

2022年5月5日 #

禁止input获取焦点之后自动弹出下拉框

摘要: #input 中的 autocomplete 属性 autocomplete:属性定义input是否启用自动完成功能,也就是我们说的是否记录用户数据! autocomplete 有两个值,分别为 on 与 off. on:启用自动完成功能,记录用户数据! off:关闭自动完成功能,不记录用户数据! 阅读全文

posted @ 2022-05-05 11:19 芮艺 阅读(533) 评论(0) 推荐(0) 编辑

jquery文件excel导入导出

摘要: ###导入excel html代码 <input id="btn-importnum" type="button" >文件导入</input> <div id="import-box" style="display: none" > <form action="/file/copy/dir" enc 阅读全文

posted @ 2022-05-05 11:05 芮艺 阅读(755) 评论(0) 推荐(0) 编辑

上一页 1 ··· 8 9 10 11 12