티스토리 툴바



  1. ===J.O.B===/HTML2012/03/22 16:24
     http://dev.w3.org/html5/webstorage/ 
     http://en.wikipedia.org/wiki/Web_Storage 

    ================================================================================================================================ 

    ================================================================================================================================ 

    localStorage.setItem("name", "Hello World!"); //saves to the database, key/value
    document.write(localStorage.getItem("name")); //Hello World!
    localStorage.removeItem("name"); //deletes the matching item from the database

    ================================================================================================================================ 

    if (typeof(localStorage) == 'undefined' ) {
    alert('Your browser does not support HTML5 localStorage. Try upgrading.');
    } else {
    try {
    localStorage.setItem("name", "Hello World!"); //saves to the database, "key", "value"
    } catch (e) {
    if (e == QUOTA_EXCEEDED_ERR) {
    alert('Quota exceeded!'); //data wasn't successfully saved due to quota exceed so throw an error
    }
    }
     
    document.write(localStorage.getItem("name")); //Hello World!
    localStorage.removeItem("name"); //deletes the matching item from the database
    }

    ==================================================================================================================

    var car = {};
    car.wheels = 4;
    car.doors = 2;
    car.sound = 'vroom';
    car.name = 'Lightning McQueen';
    console.log( car );
    localStorage.setItem( 'car', JSON.stringify(car) ); 
    console.log( JSON.parse( localStorage.getItem( 'car' ) ) ); 
    저작자 표시

    '===J.O.B=== > HTML' 카테고리의 다른 글

    Local Storage  (0) 2012/03/22
    Eclipse IDE 에서 Zen-Coding 소개  (1) 2010/05/31
    HTML5 강좌 관련 사이트  (0) 2010/05/20
    HTML5 데모와 예제 목록을 공유  (0) 2010/05/17
    Posted by 샤가No01










  2. iPhone 에서 작성된 글입니다.

    '===A.C.T=== > 내맘대로레시피' 카테고리의 다른 글

    낚지볶음 파스타  (0) 2012/01/14
    고추장파스타  (0) 2012/01/14
    고추장 크림 파스타  (0) 2012/01/14
    낚지볶음 만들기  (0) 2011/12/30
    김치볶음밥  (0) 2011/02/19
    일요일저녁 가지김치볶음밥  (0) 2010/08/01
    Posted by 샤가No01
    TAG 파스타








  3. iPhone 에서 작성된 글입니다.

    '===A.C.T=== > 내맘대로레시피' 카테고리의 다른 글

    낚지볶음 파스타  (0) 2012/01/14
    고추장파스타  (0) 2012/01/14
    고추장 크림 파스타  (0) 2012/01/14
    낚지볶음 만들기  (0) 2011/12/30
    김치볶음밥  (0) 2011/02/19
    일요일저녁 가지김치볶음밥  (0) 2010/08/01
    Posted by 샤가No01