我给DIV 添加一个IMG (进度条),为何进度条不能显示?
我的想法是 ajax之间显示进度条,ajax后台操作,完毕后再清除进度条.
$("input[type=button]:eq(3)").click(function(){
//alert("Ajax");
var process="<img src=\"images/process.gif\" alt=\"\" width=\"270px\" height=\"26px\" />";
$("#divprocess").html(process);
//进度条
$.ajax({
type:"get",
url:"Handler.ashx",
data:{file:"filejdk"},
dataType:"text",
success:function(text){
alert(text);
$("#divajax").css({
position:"absolute",
left:300,
top:150,
border:"solid 5px #996666",
width:"350px",
height:"320px",
cursor:"pointer"
}).html(text).click(function(){
$(this).fadeOut(1500,function(){
alert("OK");
})
})
}
});
$("#divprocess").html("");
})