0
JQuery UIダイアログからページを更新するにはどうすればよいですか?これはこれまでの私のコードであり、動作していません。どんな助けでも大歓迎です。JQuery UiダイアログからページのDivを更新するにはどうすればいいですか?
function submit_new_site() {
//these are the input text id's on the dialog
address = $('#loc_address').val();
city = $('#loc_city').val();
county = $('#loc_county').val();
state = $('#loc_state').val();
zip = $('#loc_zip').val();
notes = $('#loc_notes').val();
//and these are the div's on the page that calls the jQuery UI dialog
$('#new_site').html(address);
$('#new_site_city').html(city);
$('#new_site_county').html(county);
$('#new_site_state').html(state);
$('#new_site_zip').html(zip);
//this function is called from a button on the jQuery UI dialog
//but is not updating the page with the user entered information.
}
もっとコードしてください。これらの行はどこで実行されますか? –
jsFiddleのコードを見ると便利です。何がうまくいかないの? –
それはちょうどうまくいくはずです - それらのIDが本当にユニークであると仮定すると –