我们试图用jQuery('#processingDiv').show();
我们正在使用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"});
我还尝试更改名称以查看是否存在任何命名冲突。
这似乎很奇怪,有没有人对此有任何想法?
谢谢,
汤姆