2011-12-15 11 views
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.  

} 
+3

もっとコードしてください。これらの行はどこで実行されますか? –

+0

jsFiddleのコードを見ると便利です。何がうまくいかないの? –

+0

それはちょうどうまくいくはずです - それらのIDが本当にユニークであると仮定すると –

答えて

0

try $('#loc_address').prop('value')val()は、現在の値、IIRCを常に報告することはありません。

+0

ありがとうmathleticsしかし、それは私の部分から本当に愚かな間違いでした。ページ内のID名を更新するのを忘れた...ありがとう –

関連する問題