jQueryモバイルを使用してアプリケーションを作成し、そのメニューとページをwordpress throw jsonpからロードしています。collapsibleset と listview の形式でメニューを読み込んでいますが、エラーが発生し続けます。このコードで折りたたみ可能なセットを更新しようとすると
$(".childnev").html(list);
$.mobile.loading( 'hide');
$('.popupmenu').slideToggle('slow');
$(".childnev").collapsibleset('refresh');
$(".childsublist").listview().listview('refresh');
それは私にこのエラーを与えます
Error: cannot call methods on collapsibleset prior to initialization;
attempted to call method 'refresh'
そして、このコードでリフレッシュしようとすると。
$(".childnev").html(list);
$.mobile.loading( 'hide');
$('.popupmenu').slideToggle('slow');
$(".childnev").collapsibleset();
$(".childnev").collapsibleset('refresh');
$(".childsublist").listview().listview('refresh');
それは再び私にこのエラーを与えます
TypeError: o[0] is undefined
私は何かを見逃していますか、何か間違っていますか?