前端经验

echarts仪表盘完整代码

var option = { backgroundColor: #00162a , title: [{ x: 40% , y: 53% , text: 主干道平均车速:36km/h , textStyle: { fontWeight: normal , fontSize: 16 , color: #fff }, }], series: [ { name: , type: gauge , min: 0 , max: 10 , radius: 80%...

前端经验

angularJS 的利用ng-repeat遍历二维数组

最近在做报表的项目,有一种情况是后台返回给我的是一个二维数组,在前台将数据放入到表格中,因为我们用的是angularJS的前台框架,所以利用ng-repeat来实现: 首先在js中: $scope ....

前端经验

js实现拆分字符串并依次输出

var str= 2,2,3,5,6,6 ; //这是一字符串 var strs= new Array (); //定义一数组 strs=str.split( , ); //字符分割 for (i= 0 ;istrs.length ;i++ ){ document .write(strs[i]+ br/ ); //分割后的字符输出 }...

前端经验

js阻止事件冒泡及浏览器默认行为

// 阻止事件冒泡函数 stopBubble(e) { if (e e.stopPropagation) e.stopPropagation() else window .event.cancelBubble = true } // 阻止默认浏览器动作 stopDefault(e) { if (e e.preventDefault) { e.preventDefault(); } else { window...

前端经验

同级iframe之间的相互调用

body iframe id = Content1 name = Content src = ${ctx}/**/*****/****?id=0 width = 100% style = height: 50% frameborder = 0 / iframe iframe id = Content2 name = Content src = ${ctx}/****/*****/******?id=0 width = 100% style = height: 50% fram...