判断浏览器支不支持一个属性
-
//判断是否支持placeholder
-
function isPlaceholer() {
-
var input = document.createElement('input');
-
return "placeholder" in input;
-
}
微信公众号
//判断是否支持placeholder
function isPlaceholer() {
var input = document.createElement('input');
return "placeholder" in input;
}