在 div 加载时加载 JavaScript



我有一个脚本可以将页面(内容(重新加载到随机DIV我如何实现这一点,以便在加载div 后加载脚本?

我准备好了以下代码:

<script>  
$(document).ready(function() {
   $("#getAssignment").click(function() {
      var $divs = $(".assignment");
      if ($divs.length > 0) {
         window.location.hash = "#" + $divs[ Math.floor(Math.random() * 
         $divs.length) ].id;
      }
  });
});    
</script>

$("div").load(function(){
    blah();
});

这将做你想要的,但它没有意义,因为它不像图像、<script>或页面div。(无论如何,您都无法真正"加载"<div>

相关内容

  • 没有找到相关文章

最新更新