美好的一天,我正在努力解决这个问题。我花了 1 天时间试图解决这个问题,但对我来说没有运气。
我试图在 $.confirm() 上的 onContentReady 函数中附加一个孩子,但似乎对我不起作用。这是代码
html
<button onclick="btnclick()">click</button>
Javascript
function btnclick() {
// body...
$.confirm({
title:'test',
content: '<div class=".confirm_body"> </div>',
onContentReady:function() {
var body = this.$content.find('.confirm_body');
var h3 = document.createElement('h3');
h3.appendChild(document.createTextNode("child"));
body.appendChild(h3);
}
});
}
例外
jquery.min.js:2 jQuery.Deferred exception: body.appendChild is not a function TypeError: body.appendChild is not a function
at Jconfirm.onContentReady (http://localhost/NMSCST_CLINIC_INFORMATION_SYSTEM/:154:8)
at Array.<anonymous> (http://localhost/NMSCST_CLINIC_INFORMATION_SYSTEM/assets/jquery-confirm-v3.3.0/jquery-confirm.min.js:10:6129)
at j (http://localhost/NMSCST_CLINIC_INFORMATION_SYSTEM/assets/vendor/jquery/jquery.min.js:2:29568)
at k (http://localhost/NMSCST_CLINIC_INFORMATION_SYSTEM/assets/vendor/jquery/jquery.min.js:2:29882) undefined
r.Deferred.exceptionHook @ jquery.min.js:2
我的代码不显示孩子。
我应该怎么办?请帮忙