テキストボックスから値を取得したいのですが、
それらを別のページのドロップダウン リストに追加します。
次の 2 つのフォームがあるとします。
<form id="form1">
<input type="text" value="testing">
<button id="addoption">Click on me</button>
</form>
<form id="form2">
<select name="myoptions" id="myselect">
<option value="1">first option</option>
</select>
</form>
$('#addoption').click(function(e){
e.preventDefault(); //Prevent to send the form
var myvalue = $('input').val();
//Now let's append an option to the select
$('#myselect').append($("<option></option>").text(myvalue));
});