揮発性のメモ2

http://d.hatena.ne.jp/iww/

2017-01-10から1日間の記事一覧

selectのselectedはattrでなくpropで設定する

<HTML lang=ja> <HEAD> <script src="jquery.js"></script> <script> function selectchange(n){ var a = $('select#sel option'); // a.eq(n).attr('selected','selected'); a.eq(n).prop('selected','selected'); return false; } $(function(){ selectchange(1); }); </script> </head> <body> </body></html>