ドロップダウンメニューに、例として以下のように各オプションを表示します。
scomp23 - Jack Turner
今、以下のこのコードで:
var text = $(this).find('option:selected').text();
var split = text.split(' - ');
$('#currentAdminAlias').val( split[0] );
$('#currentAdminForename').val( split[1] );
$('#currentAdminSurname').val( split[2] );
私がやろうとしているのはscomp23
、#currentAdminAlias
テキスト入力での表示(これは正常に機能します)、テキスト入力での表示Jack
、#currentAdminForename
およびテキスト入力での表示Turner
です#currentAdminSurname
。
私が抱えている問題は、#currentAdminForename
テキスト入力のみに名前と名前の両方が表示されることです。
これが発生する理由はわかりましたが、私の質問は、名前と名前を別々のテキスト入力で表示するにはどうすればよいですか?