暂无 |

17. innerText 在 IE 中能正常工作,但在 FireFox 中却不行.

A
B
C
D
答案:

需用 textContent。 解决方法: if(navigator.appName.indexOf("Explorer") > -1){ document.getElementById('element').innerText = "my text"; } else{ document.getElementById('element').textContent = "my text"; }

解释:
css兼容

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论