我有一个页面
https://dev.leadformly.com/datepicker有一个iframe
在那个特定的”中,我通过以下代码通过ajax调用动态编写HTML代码.
在那个特定的”中,我通过以下代码通过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