onchange第二次点击失效的解决办法

前端之家收集整理的这篇文章主要介绍了onchange第二次点击失效的解决办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$("#Qrcode").on("change",function(){
		replace();
	});
	function replace()
	{
		$.ajaxFileUpload({
			url:"__CONTROLLER__/QrcodeSet",secureuri:false,fileElementId:'Qrcode',//file标签的id  
       		dataType: 'json',//返回数据的类型  
       		cache:false,success: function(data)
       		{
       			$(".qcode img").attr("src","__UPLOADS__/admin/qrcode/"+data.msg).attr("data",data.msg);
       		 	$("#Qrcode").replaceWith('<input type="file" id="Qrcode" name="Qrcode">'); 
           		 $("#Qrcode").on("change",function(){
         			replace();
         		});
       		},error(xml,c,e)
       		{
       			alert(e);
       		}
		});
	}
原文链接:https://www.f2er.com/ajax/162864.html

猜你在找的Ajax相关文章