次のような選択コードを含むページがあります。
<select id="select-choice">
<option value="0">Please Select</option>
<option value="1">red</option>
<option value="2">white</option>
</select>
ページの読み込みが完了した後、オプション1のテキストを赤から緑に変更するにはどうすればよいですか?これまでのところ、私は次のものを持っています:
//following is the code
$('#newoutagePage').live('pageshow', function(event) {
$('#select-choice[value="1"]').text("green");
}
しかし、それは機能しません。助言がありますか?