我有简单的代码:
jQuery(document).ready(function(){
url = document.location.href.split('#');
if(url[1] === 'button-show-modal'){
console.log('true');
jQuery('#button-show-modal').click();
}
)
因此,当页面加载时,我在控制台中看到 true,但没有出现模态jQuery('#button-show-modal').click();
... click
问题可能出在哪里?