js方法

escape方法: 该方法返回对一个字符串编码后的结果字符串
parseFloat方法:该方法将一个字符串转换成对应的小数
eval方法:该方法将某个参数字符串作为一个JavaScript执行
 
求数组中最大值
Math.Max.Apply(Math,tmp); 也可以写成 Math.Max.Apply({},tmp);的简写形式
Math.max.apply(null,a)
 
页面有一个按钮button id为button1,通过原生的js如何禁用,禁用id
document.getElementById(“button1”).setAttribute(“disabled”,”true”);
document.getElementById(“button1”).disabled=true;

posted on 2018-08-02 14:58  瑶哥哥可真帅啊!  阅读(135)  评论(0编辑  收藏  举报