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で「オン」クリックを使用しますが、「クリック」の後にドット表記を使用したり、[]を使用したりすることはありません
何が起こっているのかを理解するのに助けてくれてありがとう。