KnockOut 썸네일형 리스트형 Knockout.js 를 이용한 jQueryMobile update Knockout.js 와 jQueryMobile jQuery Mobile은 enhance 라는 과정을 시킨다. 따라서 knockout 의 Bind 가 정상적으로 일어나지 않을 수 있다. Button 은 과정을 통해서 변형된다. 원본태그 a href="#" data-role="button" 변형태그(enhanced) a href="#" data-role="button" 여기서 변경이 되어야 할 text 값은 " a href="#" data-role="button" 이 부분이다. 제대로 된 변형을 시켜주기 위해서는 ko.applybinding 이후에 buttonMarkup을 호출해 주어야 한다.var $target = $(a);$target.data('buttonElements', null);$target... 더보기 이전 1 다음