摘要:
判断页面中是否引入某个js, //检测页面js function testJs(){ if($("script[src='js/common/test2.js']").length > 0){ return; }else{ var body = $("body"); var script = $(" 阅读全文
摘要:
通过简单的css设置页面的文字无法被选定。 我不能被选中复制 .select{ -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none; } 通过上面的css就能设置,div里面的 阅读全文
摘要:
问题描述: 在js中四舍五入的函数 toFixed(n) , n为要保留的小数位数。 n为0~20,当n超过20的时候,js会出错。 var d=139.605; var f=d.toFixed(2); alert(f); 期望值:139.61 结果为:139.60 bug:如果小数点前和要截取的前 阅读全文
摘要:
var testEle = document.getElementById("test") testEle.setAttribute("test","aaa"); // 设置 testEle.attributes["test"].nodeValue; // 获得 阅读全文
摘要:
1,html <div class="left-sidebar"></div> 2,css /*滚动条整体样式*/ .left-sidebar::-webkit-scrollbar,.img-container::-webkit-scrollbar{ width: 3px; /*高宽分别对应横竖滚动 阅读全文
摘要:
准备使用JS Math.sin() 与 Math.cos(), 但正弦、余弦概念都不清楚了,故多番搜查练习,知道里面的这个说的还是可以。能帮助更好地使用理解Math.sin() 与 Math.cos(),方便canvas 画图找坐标; 正弦函数sinA:表示在一个直角三角形中,∠A(非直角)的对边与 阅读全文
摘要:
Math.sin(x) //x 的正玄值。返回值在 -1.0 到 1.0 之间; Math.cos(x) //x 的余弦值。返回的是 -1.0 到 1.0 之间的数; 这两个函数中的X 都是指的“弧度”而非“角度” Math.PI 相当于数学中的 π , 180° ; 角度为 a, 则弧度为a * 阅读全文