OldFunc = window.onload;
window.onload = OnLoad;
function OnLoad() {
try {
OnFixFontAndTable();
OldFunc();
} catch (e) {
alert(e);
}
}
function OnFixFontAndTable() {
$('.something some').css({
'behavior': 'url(/path/border-radius.htc)'
});
}
我正在使用border-radius.htc
来修复以前版本的IE的问题,
但alert(e)
始终称为"TypeError:Object expected"
。
答案 0 :(得分:0)
尝试使用defer="defer"
标记中的script
,如下所示
<script type="text/javascript" defer="defer"></script>