설명: 여기에서 클릭 이벤트는 제출 이벤트나 데이터 테이블에 포함된 버튼이 아닌 간단한 클릭 이벤트를 의미합니다. 이 두 가지 모두에 대해layui에는lay-submit 및lay-event 지원 속성이 있습니다. 따라서 가장 독창적인 js와 jq만 클릭 이벤트를 모니터링하는 데 사용할 수 있습니다.
(추천 튜토리얼: layui)
첫 번째, js 모니터링
<button class="layui-icon layui-icon-export" id="withExport"></button>
$(document).on('click',"#withExport",function(){ layer.msg("按钮点击"); });
두 번째, jQuery 모니터링
<button class="layui-icon layui-icon-export" id="withExport"></button>
$("#withExport").click(function(){ layer.msg("点击事件"); });
위 내용은 Layui에서 클릭 이벤트를 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!