0

我正在为 JS 中的一些选择选项设置一个 CSS 类。此类包括边距样式。它在 FF 中工作,但不在 IE 和 chrome 中。

 window.onload = function() {
    replace('edit-field-region-tid');
    replace('edit-tid');
}
function replace(id) {
    var i = 0;
    var s = document.getElementById(id);
    for (i; i < s.options.length; i++) {
        if (find(s.options[i].text, id, i)) {
            s.options[i].setAttribute("class", "sub_options");
        }
    }
}
function find(str, id, option_id) {
    var i;
    var s = document.getElementById(id);
    for (i = 0; i < str.length; i++) {
        if (str.charAt(i) == '-') {
            s.options[option_id].text = str.cutAt(0, "");
            return true;
        }
    }
    return false;
}
String.prototype.cutAt = function(index, char) {
        return this.substr(index+1, this.length);
}

和 CSS:

.sub_options{
    margin-left:20px;
    text-indent:-2px;
}

任何想法谢谢!

火狐

铬合金

4

1 回答 1

1

你可以这样做:http: //jsbin.com/oyatis/1/edit

$('select option').prepend('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');

我尝试使用 jquery 的 css 方法,但这并没有受到影响,但是一些不间断的空格是移动元素的有效方法。看看这是否适合你。

于 2012-11-16T10:58:22.437 回答