jQuery相應事件的參數及回調函數

   
 <script>
        $(function(){
            var eventType, textValue, textStatus;
            $('input[type="submit"]').on(
                'mouseover',
                {status:'important'},
                function(e){
                    eventType = e.type;
                    textValue = $('textarea').val();
                    textStatus = e.data.status;
                    alert(eventType+' '+textValue+' '+textStatus);
                }
            )
        })
    </script>
相關文章
相關標籤/搜索