我不确定这个地方是否适合提问,但我在调试时遇到了麻烦。
我创建了一个具有登录功能的网站。当人们点击登录时,登录表单上会出现一个Bootstrap popover。
我在每个浏览器中测试过这个:( IE 9,10,11和edge + Chrome,Firefox和Safari)。它无处不在。
但是,我仍然收到人们无法登录的消息,因为登录弹出窗口没有出现。所有这些人都在使用IE浏览器。
我所谈论的网站是http://goo.gl/AZICag。有些人点击'inloggen'时遇到麻烦。不幸的是我无法在IE浏览器中模拟它。
HTML
<div class="topnavform">
<a href="#" class="usermenu" tabindex="0">
<div class="loginwrapper">
<span><strong>login</strong></span>
</div>
</a>
<div class="user-popover hide" id="user-popover">
<div class="user-login">
{{ form included with php }}
</div>
</div>
</div>
javascript是
$('.usermenu').popover({
html : true,
placement: 'bottom',
container: '.topnavform',
template: '<div class="popover user-popover" role="tooltip"><div class="arrow"></div><div class="popover-content"></div></div>',
content: function() {
return $('#user-popover').html();
}
});
答案 0 :(得分:0)
您可以使用https://www.browserstack.com/test-in-internet-explorer检查您的网站功能 因此,您需要注册以查看您的网站