天天看點

判斷浏覽器是否支援某個css屬性

判斷浏覽器是否支援某個css屬性

(function(temp){
	if(temp.style["transition"]!== undefined){
		return true;
	}
	return false;
})(document.createElement("div"));