Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我想知道如何才能使显示插件起作用,而不是仅在您单击链接时才起作用,在进入页面时使用此功能。
操作,
我认为您想在页面加载时触发点击事件。此插件希望您的标记中有一个与此匹配的元素:
$('a[data-reveal-id]')
所以,看起来像这样:
<a href="#" data-reveal-id="foo"></a>
如果您在单击链接时插件正常工作,您需要做的就是:
$(function(){ $('a[data-reveal-id="foo"]').trigger('click'); });