我希望有人可以解释下面从 Twitter Bootstrap 获取的代码中发生的事情......
$(function () {
$('body').on('click.collapse.data-api', '[data-toggle=collapse]', function ( e ) {
var $this = $(this), href
, target = $this.attr('data-target')
|| e.preventDefault()
|| (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
, option = $(target).data('collapse') ? 'toggle' : $this.data()
$(target).collapse(option)
})
})
我在 jquery 中使用“on”点击,但在“click”之后从不使用点符号,从不使用 []
感谢您在弄清楚发生了什么方面提供的任何帮助。