1. 程式人生 > >JS中一些特殊的方法

JS中一些特殊的方法

獲取 mage exc prope mp4 names vid 中一 var

//用某個字符切割成數組

var str = "obj_str";

var arr = str.split(‘_‘);

//arr = [‘obj‘,‘str‘];

//獲取對象的屬性

YanXG.fileType = {
image: [‘jpg‘,‘gif‘,‘png‘],
word: [‘doc‘,‘docx‘],
excel:[‘xls‘,‘xlsx‘],
video:[‘mp4‘,‘avi‘,‘3gp‘]
}

var keys = Object.getOwnPropertyNames(YanXG.fileType);

//keys = [image,word,excel,video];

JS中一些特殊的方法