我在 IE 8 中收到“对象不支持此属性或方法”错误。Firefox 中没有错误。
有人知道是什么原因造成的吗?
<script type="text/javascript">
function callReport() {
var sPath = $('input[name*="ReportPath"]').val();
window.open(sPath);
}
$('div:last div.active').qtip({
content: 'This is an active div element',
show: 'mouseover',
hide: 'mouseout'
})
</script>