IE8浏览器不支持placeholder属性 提供如下解决方案

function checkPlaceholder(obj) {  
    var value = obj.val();
    obj.focus(function() {  
        obj.val("");
    });  
    obj.blur(function() {  
        obj.val(value);
    });  
}
jQuery(document).ready(function () {
    //iE11以下的不支持placeholder属性 统一赋值
    $("input[name=startDate]").val("开始时间");
    $("input[name=endDate]").val("结束时间");
    $("input[name=hourPeriOdStart]").val("逗留最少时间");
    $("input[name=hourPeriOdEnd]").val("逗留最长时间");
    checkPlaceholder($("input[name=startDate]"));
    checkPlaceholder($("input[name=endDate]"));
    checkPlaceholder($("input[name=hourPeriOdStart]"));
    checkPlaceholder($("input[name=hourPeriOdEnd]"));
    )};

花开朵朵
9 声望6 粉丝

专注于大数据开发,segmentfault主要记录日常的前端问题