首页 > 代码库 > js记性

js记性

1、判断浏览器是否支持某个属性

// 判断浏览器是否支持placeholder属性function isSupportPlaceholder() {  var input = document.createElement(input);  return placeholder in input;}

 

js记性