전체 글

박정수가 공부한 자료를 남기기 위한 블로그
영어공부

JavaScript Output

JavaScript Display Possibilities JavaScript can "display" data in different ways: Writing into an HTML element, using innerHTML. Writing into the HTML output using document.write(). Writing into an alert box, using window.alert(). Writing into the browser console, using console.log(). 자바스크립트는 가능성을 보여준다? 자바스크립트는 몇가지 다른 방식으로 데이터를 표현할 수 있다. innerHtml 을 사용함으로서 html 요소 안에 작성할수 있다. document.write(). 를..

영어공부

JavaScript Where To

The tags. html 안에서 자바스크립트 코드는 태그 사이에 삽입되어야만 한다. Old JavaScript examples may use a type attribute: . The type attribute is not required. JavaScript is the default scripting language in HTML. 오래된 자바스크립트 예제는 를 사용할지도 모른다. 타입 속성은 요구되지 않는다. 자바스크립트는 html 안에서 기본적으로 스크립팅 되는 언어이다? JavaScript Functions and Events A JavaScript function is a block of JavaScript code, that can be executed when "called" for. F..

영어공부

JavaScript Introduction

This page contains some examples of what JavaScript can do. 이 페이지는 자바스크립트가 무엇을 할 수 있는지에 대한 조금의 예제를 포함한다. JavaScript Can Change HTML Content One of many JavaScript HTML methods is getElementById(). This example uses the method to "find" an HTML element (with id="demo") and changes the element content (innerHTML) to "Hello JavaScript": 자바스크립트는 html 문서를 변경할 수 있다. 많은 자바스크립트 html 메소드 중 하나는 getElement..

jeongsu
Park_jeong_su