1.window.open("")打开一个新的窗口;
简单用法:在一个浏览器中一个新的窗口 window.open("https://www.baidu.com");
在新的浏览器窗口中打开:
myWindow=window.open('','','width=200,height=100')//设置浏览器的尺寸大小
myWindow.document.write("This is 'myWindow'")
myWindow.focus()
如果要实现点击一次出现两个页面
window.open("https://www.baidu.com");
window.open("https://www.bangbanjida.com"); //这就尴尬了
打开一个全新的窗口
myWindow=window.open('','','width=200,height=100')
myWindow.document.write("This is 'myWindow'")
myWindow.focus()
2.$.trim(str) 去除字符串中的空格
var str=" 嘿嘿嘿";
alert(str);
console.log("怎么办");
alert($.trim(str));
3.$.each() 遍历数组 或者对象($.ajax() 返回为对象)
var ary=["张三","李四","王麻子"];
$.each(ary,function(index,value){
$('#list').html($('#list').html()+index+"---"+value+'
');
});
4.$.grep() 筛选数组 返回值为数组类型
var ary =[1,2,3,4,4,4,32,1,1,4];
var aryGrep=$.grep(ary,function(element,index){
return index<4;//筛选条件 反会的是数组
});
网友评论