2012-07-01から1ヶ月間の記事一覧

jquery mobileでIDが二重に被る場合の対処方法

なんかいい対策ないのかなーって思ってたけど、こんなのを思いついた。 // JqueryMobile ID conflict fix $(document).bind("pageshow", function () { if ($.mobile.firstPage !== $.mobile.activePage){ $.mobile.firstPage.remove(); } });ページが変化し…