html custom_event_page.html

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html custom_event_page.html相关的知识,希望对你有一定的参考价值。

div{
    height: 200px;
    width: 200px;
}

.green{
    background-color: green;
}
 $(document).ready(function(){
      $('#myElementId').on('myCustomEvent', function(event) {
          // $(this).addClass('green');    
          // $(event.target).addClass('green');
          // $('#myElementId').addClass('green');
      });
      $('#myElementId').trigger('myCustomEvent');
 });
<html>

<head>
    <link rel="stylesheet" type="text/css" href="style.css"/>
    <script src="script.js"></script>
</head>

<body>
<div id="myElementId"></div>

</body>

</html>

以上是关于html custom_event_page.html的主要内容,如果未能解决你的问题,请参考以下文章

html Html模板/ Html Boilerplate |标签HTML

html里怎么引用一个html的头部

html5与传统html区别

html4和html5的区别

HTML元素

head标签怎么给多个html引用