본문으로 바로가기

javascript로 HTML 문서에 접근하고 contents변경해보기

category Javascript 2019. 11. 5. 10:04
<body>
    <p id="one">p1</p> 
    <p>p2</p> 
    <p>p3</p>
    <input type="text" id="two"/>
    <input type="text" />
    <input type="text" />
    <div id="three">div1</div>
    <div>div2</div>
    <div>div3</div>

    <script>
        document.querySelectorAll('p')
        document.querySelectorAll('p')[0]
        document.querySelectorAll('p')[1]
        document.querySelectorAll('p')[2]
        document.querySelectorAll('p').innerText

        document.querySelector('#one')
        document.querySelector('#one').innerText

        document.querySelectorAll('input')[0].value  
        document.querySelectorAll('#two').value  
    </script> 
</body>

'Javascript' 카테고리의 다른 글

입력된 내용 출력하기  (0) 2019.11.05
카운트 올리기, 줄이기, 리셋  (0) 2019.11.05
Function(함수)  (0) 2019.11.04
Array (배열)  (0) 2019.11.04
Plain object (객체)  (0) 2019.11.04