11

我必须在下面的方法中使用 bind() 。我只想支持IE10及以上。谁能验证 IE10 何时或是否支持 bind()?

    // Verify console exists
    ...    
    if (window.console) {
        logger = window.console.log.bind(window.console);
        // bind needed for Safari but not FF, possible IE issue?
    } else {
        return false; // window.console not available, silent fail
    }
    ...
4

1 回答 1

9

bind自版本 .IE 起已在 IE 中得到支持9。看看这个兼容性表,链接自 MDN 文档bind:http: //kangax.github.com/es5-compat-table/

于 2013-01-15T21:02:17.483 回答