js记性

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

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

 

posted @ 2016-08-29 00:00  jamsbwo  阅读(99)  评论(0编辑  收藏  举报
©2014 to