JQ 사용자 정의 속성 바인딩 요소에 따라 이벤트 추가
5862 단어 H5+JS+CSS
<body>
<div id="_div" class="container" psa="aaa">sdfsdfssddiv>
<input type="text" id="abc" value="123" psa="bbb"/>
<script type="text/javascript" >
$(document).ready(function() {
$("[psa]").on("click",function(){//
alert( 'function'== typeof $(this).html && $(this).html().length>0 ? $(this).html(): $(this).val());
})
});
script>
body>
귀속 요소 행내 사용자 정의 속성이 필요할 때
$("[psa]")
, 상기 []
기호를 사용하여 선택해야 합니다