我有一个页面https://dev.leadformly.com/datepicker有一个 iframe 在那个特定的''中,我正在通过以下代码通过 ajax 调用动态编写 HTML 代码。
<script>
$(document).ready(function(){
$.post(URL,
function (data) { //here it retruns the HTML code
$("body").html('<iframe style="width:100%;height:384px;"></iframe>');
$("body iframe")[0].contentDocument.write(data.democode);
},
'json'
);
});
</script>
现在,当我单击日期选择器时,它会在控制台中引发错误,例如:
Uncaught TypeError: Cannot read property 'top' of undefined
你能帮我解决这个问题吗?或者只是解释原因,以便帮助我解决它