常用JS二 清疚 2023-06-15 06:46 8阅读 0赞 ** 文件上传** <input type="file" name="file" id="vouchers" style="width: 200px;" accept=".pdf,.zip,.rar,.xls,.xlsx,.wps,.ppt,.doc,.dot,.docx,.pptx" /> 更多类型,参考:[https://blog.csdn.net/daponi/article/details/100532615][https_blog.csdn.net_daponi_article_details_100532615] **JS文件下载** /*** * 判断浏览器类型 * @returns {string} */ function myBrowser(){ var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串 var isOpera = userAgent.indexOf("Opera") > -1; if (isOpera) { return "Opera" }; //判断是否Opera浏览器 if (userAgent.indexOf("Firefox") > -1) { return "FF"; } //判断是否Firefox浏览器 if (userAgent.indexOf("Chrome") > -1){ return "Chrome"; } if (userAgent.indexOf("Safari") > -1) { return "Safari"; } //判断是否Safari浏览器 if (userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1 && !isOpera) { return "IE"; }; //判断是否IE浏览器 if (userAgent.indexOf("Trident") > -1) { return "Edge"; } //判断是否Edge浏览器 } /*** * 下载 * @param url * @param id */ function urlDownLoad( url ) { if (myBrowser()==="IE" || myBrowser()==="Edge"){ var oPop = window.open(url,"","width=1, height=1, top=5000, left=5000"); for(; oPop.document.readyState != "complete"; ) { if (oPop.document.readyState == "complete")break; } oPop.document.execCommand("SaveAs"); oPop.close(); }else{ //!IE window.location.replace( url ); } } ** A 标签的某些事** <a href="javascript:void(0)" onclick="roleupdate()"> [https_blog.csdn.net_daponi_article_details_100532615]: https://blog.csdn.net/daponi/article/details/100532615
相关 常用JS二 文件上传 <input type="file" name="file" id="vouchers" style="width: 200px;" accep 清疚/ 2023年06月15日 06:46/ 0 赞/ 9 阅读
相关 js常用事件 window.onload 用于在网页加载完毕后立刻执行的操作,即当 HTML 文档加载完毕后,立刻执行某个方法。 window.onload=function 分手后的思念是犯贱/ 2022年12月11日 15:17/ 0 赞/ 196 阅读
相关 JS常用方法 split() 方法 > 把一个字符串分割成字符串数组: > var str="How are you doing today?"; > var n=str.sp 逃离我推掉我的手/ 2022年09月11日 11:29/ 0 赞/ 269 阅读
相关 常用 js 跳转到当前目录中的某页面 οnclick="document.location.href='VIP\_Register.html'" 返回上页面 οnclick=" 谁践踏了优雅/ 2022年08月24日 00:51/ 0 赞/ 132 阅读
相关 常用JS函数 1. 计算年龄 / 通过 传入字符串格式的日期, 计算年龄. 如, 1,("2011-05-25", "-") ==> 3 ; 2,("2 小灰灰/ 2022年08月13日 07:59/ 0 赞/ 246 阅读
相关 js常用表达式 <input type=’text’ id=’SYS\_PAGE\_JumpPage’ name=’SYS\_PAGE\_JumpPage’ size=’3′ maxlengt 分手后的思念是犯贱/ 2022年08月11日 00:58/ 0 赞/ 88 阅读
相关 JS常用验证 //验证一个值是否为正整数 function IsInteger(value){ var re = /^[1-9]+[0-9]]$/; 浅浅的花香味﹌/ 2022年06月15日 01:24/ 0 赞/ 188 阅读
相关 js常用 创建变量: var p=3.14; 数据类型: string,number,boolean,arry,obj,null,undefined; 对象: ゞ 浴缸里的玫瑰/ 2022年05月29日 01:26/ 0 赞/ 183 阅读
相关 js常用 一,如何实现刷新当前页面呢?借助js你将无所不能。 1,reload 方法,该方法强迫浏览器刷新当前页面。 语法:location.reload(\[bForceGet\ Myth丶恋晨/ 2022年05月24日 00:56/ 0 赞/ 212 阅读
相关 JS常用技巧 判断值 判断是否为\{\} var data = { }; var arr = Object.keys(data); alert(arr.len 傷城~/ 2022年01月22日 23:04/ 0 赞/ 284 阅读
还没有评论,来说两句吧...