jQuery显示在IE8中不起作用

时间:2014-03-07 22:01:42

标签: javascript jquery html css internet-explorer-8

我们试图用jQuery('#processingDiv').show();

在IE8(合约内容)中展示一个范围

我们正在使用jquery-1.3.2.min.js

我们声明这样的跨度:

jQuery("#processingDiv").bind("ajaxSend", function(){
    jQuery(this).show();
 }).bind("ajaxComplete", function(){
     jQuery(this).hide();
 });

这是processingDiv span的HTML

<span id="processingDiv" style="width: 430px;"
        class="boldblue"> Processing... <img src="<icis2:icisRes/>images/loadingBar.gif" border="0"
        alt="Processing..." />
</span>

除了javascript确认运行之外,我们看不到跨度。

if(confirm("Warning! You are processing this filing without appending signature pages to any documents. Continue?")){
    checkDraftTemplateAndSubmitForm(form);
} else {
    jQuery('#processingDiv').hide();
    return false;
}

经过一些研究后我试了一下但没有运气:

jQuery('#processingDiv').css({"visibility":"visible"});

我还尝试更改名称以查看是否存在任何命名冲突。

这似乎很奇怪,有没有人对此有任何想法?

谢谢,

汤姆

0 个答案:

没有答案