0

文字列の最初の文字である数字を残りの文字列から分離しようとしています。たとえば、選択する 1 つのオプションは、選択する 1 つのオプションである必要があります。

選択リストは動的に生成されることに注意してください

<select>
    <option>1options to select</option>
    <option>2anything can be here</option>
    <option>3anything can be here</option>
    <option>5anything can be here</option>
</select>

$(".custom-ordered-list select option").each(function() {

    //i think i need to loop through but not sure what to do next.                      
});
4

2 に答える 2

4

私は次のようにします:

$(".custom-ordered-list select option").text(function(i, text) {
    return text.replace(/^\d+/, "$& ");
});

デモ: http://jsfiddle.net/63h7T/

于 2013-05-21T14:57:46.380 に答える