var option = $target.data('ga.modal') ? 'toggle' :
$.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
第一次难度
现在我没有完全取消并且第一个参数传递给$ .extend,即remote: !/#/.test(href) && href
同样,使用bootstrap modal.js,option
= toggle
,因为$target.data('bs.modal')
永远不会评估为false。
第二次难度
是否有人知道$target.data('bs.modal')
何时评估为假,我的意思是在现实世界中使用?
可以在git too找到难度线。
编辑:: 有人可以解决我的第一个难题,我会尝试找出第二个问题并发布答案。
谢谢。