发布于 5年前 js 判断对象是否为空 function isEmptyObject(obj) { for (var key in obj) { return false } return true }