Jquery Mobile problem with AJAX updates
问题 I'm having a very weird problem with radio buttons in JQuery Mobile. I'm populating some radiobuttons with ajax. When I do it the first time it's ok, but any subsequent loads seem to cause problems with the display - each checkbox is displayed separately rather than on a single list. function getWords() { var gig_id = $('#gigs').val(); $.ajax({ url: Nnn.serverLocation+'/words?gigid='+ gig_id, success: function(data) { Nnn.words = eval('(' + data + ')'); displayWords(); } }); } function