
JavaScript
徐行致远
徐行致远,欲速不达
展开
-
JS手机访问PC网站自动跳转代码
JS手机访问PC网站自动跳转代码原创 2023-03-11 11:37:30 · 907 阅读 · 0 评论 -
网页正文字体设置大中小代码
js代码:doZoom.jsfunction doZoom(size){ var zoom = document.getElementById('Zoom'); zoom.style.fontSize=size+'px';}测试:test.html预览网页正文字体设置大中小代码字号:【大中 小】原创 2018-01-10 10:42:48 · 2300 阅读 · 0 评论 -
HTML中JS引入外部FLASH文件
代码:// getFlash(透明FLASH)function getFlash(file, w, h){ document.write(''); document.write(''); document.write(''); document.write(''); document.write(''); document.write('');}// getFl原创 2018-01-10 10:44:10 · 1194 阅读 · 0 评论 -
JS在网页中运行、复制、保存代码
JS在网页中运行、复制、保存代码function runCode(obj){ var winname = window.open("", "_blank","resizable=yes,scrollbars=yes,status=yes"); winname.document.open("text/html", "replace"); winname.document.writeln(obj.va原创 2018-01-10 10:45:11 · 894 阅读 · 0 评论 -
JS动态获取div的宽度、高度
JS动态获取div的宽度var o = document.getElementById("div1");var w = o.clientWidth||o.offsetWidth;alert("Div1" width is "+w);JS动态获取div的高度同理:var o = document.getElementById("div1");var h = o.clientHeight||o.off原创 2018-01-10 10:45:58 · 61864 阅读 · 0 评论 -
JS兼容Firefox IE加入收藏 设为首页代码
//加入收藏function addCookie(url, title){ if(document.all){ window.external.addFavorite(url, title); } else if(window.sidebar){ window.sidebar.addPanel(title, url,""); }}//设为首页fu原创 2018-01-10 10:46:55 · 343 阅读 · 0 评论 -
js判断是否在微信浏览器中打开
js判断是否在微信浏览器中打开用JS来判断了,经过查找资料终于实现了效果,直接上代码[javascript] view plain copyfunction is_weixn(){ var ua = navigator.userAgent.toLowerCase(); if(ua.match(/MicroMessenger/i)=="micromessenger") { ...转载 2018-06-05 17:26:58 · 1678 阅读 · 0 评论