selectボックスに属するoptioinを作り直す



document.forms[0].hogeId.length=1;
document.forms[0].hogeId.options[0].value = '';
document.forms[0].hogeId.options[0].text = '選択してください';



って感じ。
jQueryとか使うと

var hogeId = $('select[@name=hogeId]');
hogeId.empty();
hogeId.append($('<option>').attr({ value:'' }).text('選択してください'));


ってやりたくなるけどちょー遅い。

javascriptって難しいなぁ。。

0 コメント: