baozhengrui

导航

上一页 1 ··· 14 15 16 17 18

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 芮艺 阅读(216) 评论(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 芮艺 阅读(24) 评论(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 芮艺 阅读(149) 评论(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 芮艺 阅读(1323) 评论(0) 推荐(0)

2022年5月5日 #

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

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

posted @ 2022-05-05 11:19 芮艺 阅读(615) 评论(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 芮艺 阅读(791) 评论(0) 推荐(0)

上一页 1 ··· 14 15 16 17 18