jQuery Selectbox问题与最新的chrome

时间:2014-06-02 08:37:42

标签: javascript jquery html5 jquery-plugins jquery-selectbox

Chrome 35版本的问题 使用jQuery Selectbox加载下拉时,我在chrome 35中遇到了问题。 即使在最小化下拉后,仍有很多线路。点击其他地方就消失了。

问题在版本33.PFA中不可用.PFA图像。 Print screen with extra lines

关闭jquery选择框时会在窗口中留下蓝色水平线。赞赏任何建议或指示

1 个答案:

答案 0 :(得分:1)

蓝色轮廓来自UA样式表。默认值为:

:focus {
    outline: -webkit-focus-ring-color auto 5px;
}

在CSS中的某处添加它以覆盖它:

.sbHolder:focus {outline: none;}