Open paynehsu opened 6 years ago
这是因为ajax后载入导致的,我们研究一下看有没有办法让js能运行
新版代码: stlClient.post(url, data, function (err, data, status) { if (!err) document.getElementById("ajaxElement_1_754").innerHTML = data.html; });
老版代码:
$.ajax({ url: url, type: "POST", mimeType:"multipart/form-data", //contentType: false, //processData: false, cache: false, xhrFields: { withCredentials: true }, data: pars, success: function(json, textStatus, jqXHR){ jQuery("#ajaxElement_1_388").html(json); } });
嗯,我们再改一下
可以正确解析,但是不能运行js