JavaScript 함수의 연습 문제

1302 단어 JavaScript함수.

연습 문제


1. 경고'OK'를 표시하는 함수 만들기
2. 함수에 문자를 전달하고 경보로 문자를 표시합니다
3. 두 개의 숫자를 함수에 전달하고alert로 곱한 결과를 표시한다
4. 3개의 숫자를 함수에 전달하고alert로 덧붙인 결과를 표시한다
5. "id명"과 "색명"을 함수에 전달하여 "p"요소의 배경을 바꿉니다
6-1.현재--년-월-일 보상 결과
1
function ok_alert(){
    alert("ok");
}
ok_alert();
2
function sum(n1){
    alert(n1);
}    
sum("一文字");
3
function two(one,two){
    var sumTwo = one + two;
    alert(sumTwo);
}    
two(1,2);
4
function three(one, two, three){
    var sumThree = one + two + three;
    alert(sumThree);
}
addTh(1,2,3);     
5
function idColor(id,color){
    document.querySelector(id).style.backgroundColor = color;
}
idColor("div", "red");
6
function nowTime(){
    var now   = new Date();
    var year  = now.getFullYear();
    var month = now.getMonth()+1;
    var date  = now.getDate();
    var time = "現在"+year+"年"+month+"月"+date+"日";
    alert(time);
}   
nowTime();

좋은 웹페이지 즐겨찾기