donutkiki
1.<script type="text/javascript">
        $(document).ready(function () {
            alert("hello");
        })
</script>

2.<script type="text/javascript">
        $(function () {
            alert("hello");
        })
</script>
3.<script type="text/javascript">
    jQuery.ready(function () {
            alert("hello");
        })
</script>
4.<script type="text/javascript">
        jQuery(function () {
            alert("hello");
        })
</script>

  

分类:

技术点:

相关文章:

  • 2022-01-08
  • 2022-01-08
  • 2022-01-08
  • 2022-12-23
  • 2022-01-08
  • 2022-01-08
  • 2022-01-08
  • 2022-01-08
猜你喜欢
  • 2022-01-08
  • 2022-01-08
  • 2022-01-08
  • 2022-01-08
  • 2021-12-28
  • 2022-12-23
相关资源
相似解决方案