带有 Opera Mobile 的 jQuery mobile 中存在一个错误,它显示默认选择而不是来自 jQuery Mobile 的自定义选择,请参见下面直接从 jQuery Mobile 网站截取的屏幕截图!

这是 jQuery mobile 用来隐藏选择的代码:
.ui-select .ui-btn select {
    cursor: pointer;
    -webkit-appearance: button;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 1.5em;
    min-height: 100%;
    height: 3em;
    max-height: 100%;
    opacity: 0;
    -ms-filter: "alpha(opacity=0)";
    filter: alpha(opacity=0);
    z-index: 2;
}
有没有办法像在 iPhone 和 Android 默认浏览器上那样隐藏它?