본문 바로가기
Web

WEB Front (jquery, jquery mobile)

by _dreamgirl 2024. 5. 15.
반응형


-- jquery 관련

https://blog.jquery.com/category/jquery/

 

jQuery | Official jQuery Blog

jQuery’s influence on the web will always be evident. When it was first introduced in 2006, jQuery became a fundamental tool for web developers almost immediately. It simplified JavaScript programming, making it easier to manipulate HTML documents, handl

blog.jquery.com

기존 웹 프로젝트 소스에 data-role="content" 이런식으로 정의 되어있음
이 부분은 jQuery Mobile 페이지 구성시 영역에 해당된다.
page/header/content/footer

현재 jQuery 최신 버전은 3.6.4 이고 내가 사용하고 있는 버전은 3.4.1 버전이다.
jQuery UI 최신 버전은 1.13이고 내가 사용하는 jQuery UI 버전은 1.12버전이다.

https://blog.jqueryui.com/2021/10/jquery-ui-1-13-0-released/

 

jQuery UI 1.13.0 released | jQuery UI Blog

jQuery UI 1.13.0 released After a long break, it is our pleasure to announce the 1.13.0 release. The main focus of this release was improving compatibility with recent jQuery versions so we postponed most breaking changes like removal of deprecated APIs an

blog.jqueryui.com

 

-- jQuery Mobile 지원 안 함

jQuery Mobile 은 더 이상 지원되지 않습니다
jQuery Mobile 프로젝트의 상태에 대한 자세한 내용은 공지 블로그 게시물을 참조하십시오.

안정적인 버전  Version 1.4.5
jQuery 1.8 - 1.11 / 2.1
https://jquerymobile.com/

 

jQuery Mobile

Developer Links Seriously cross-platform with HTML5 jQuery Mobile framework takes the "write less, do more" mantra to the next level: Instead of writing unique applications for each mobile device or OS, the jQuery mobile framework allows you to design a si

jquerymobile.com

 

-- cannot read properties of undefined (reading msie)

페이지 이동 하는데 jquery.history.js에서 오류가 난다. 아래 내용을 정의하여 추가한다.

jQuery.browser = {};
(function () {
    jQuery.browser.msie = false;
    jQuery.browser.version = 0;
    if (navigator.userAgent.match(/MSIE ([0-9]+)\./)) {
        jQuery.browser.msie = true;
        jQuery.browser.version = RegExp.$1;
    }
})();

-- 기타 읽어볼 내용

 https://www.egovframe.go.kr/wiki/doku.php?id=egovframework:mrte:ux_ui:ux_ui_controller_component_3.5

 

egovframework:mrte:ux_ui:ux_ui_controller_component_3.5 [eGovFrame]

전자정부에서 효율적인 스마트 전자정부 기반시스템의 구축•운영을 통해 전자정부의 서비스 품질 UX 레이어는 UI/UX Controller Component, JavaScript Module App Framework, HTML5, CSS3 서비스를 제공한다. 오픈

www.egovframe.go.kr

 

 

 

반응형

'Web' 카테고리의 다른 글

WEB Front(javascript)  (0) 2024.05.15
WEB Front(JSTL)  (0) 2024.05.15
자식 팝업창 열려있느지 체크하기  (0) 2024.01.12
파일 업로드 기능 개발  (2) 2023.12.08
request 파라미터 값 설정 및 조회  (0) 2023.11.13

댓글