标签:
1、判断浏览器是否支持某个属性
// 判断浏览器是否支持placeholder属性 function isSupportPlaceholder() { var input = document.createElement(‘input‘); return ‘placeholder‘ in input; }
js记性
原文地址:http://www.cnblogs.com/jamsbwo/p/5816427.html