Settings | Sign in | Sign up

The author has 3 posts.

使用jquery ui autocomplete組件庫後,https模式下IE6報安全警告的解決辦法

Floor 1 巨大八爪鱼 3/29/25 16:10

在任意位置添加下列CSS樣式:

<style>
.ui-menu .ui-menu-item {
 list-style-image: none !important;
}
.ui-progressbar-overlay {
 background: none !important;
}
</style>

添加後,安全警告就沒有了。

Floor 2 巨大八爪鱼 3/29/25 17:00
.ui-state-focus默認有個margin: -1px;的樣式,可以用margin: 0px !important;語句覆蓋掉。
Floor 3 巨大八爪鱼 3/29/25 19:20
檢查了下,用的jquery ui版本是2015年2月份的v1.11.3,這個版本已經放棄了對ie6的支持,最低支持的是ie7。所以才需要這個修改。

Content converter:

Reply the post
Content:
User: You are currently anonymous.
Captcha:
Unclear? Try another one.