JavaScript 함수의 연습 문제
1302 단어 JavaScript함수.
연습 문제
1. 경고'OK'를 표시하는 함수 만들기
2. 함수에 문자를 전달하고 경보로 문자를 표시합니다
3. 두 개의 숫자를 함수에 전달하고alert로 곱한 결과를 표시한다
4. 3개의 숫자를 함수에 전달하고alert로 덧붙인 결과를 표시한다
5. "id명"과 "색명"을 함수에 전달하여 "p"요소의 배경을 바꿉니다
6-1.현재--년-월-일 보상 결과
1
function ok_alert(){
alert("ok");
}
ok_alert();
2function sum(n1){
alert(n1);
}
sum("一文字");
3function two(one,two){
var sumTwo = one + two;
alert(sumTwo);
}
two(1,2);
4function three(one, two, three){
var sumThree = one + two + three;
alert(sumThree);
}
addTh(1,2,3);
5function idColor(id,color){
document.querySelector(id).style.backgroundColor = color;
}
idColor("div", "red");
6function 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();
Reference
이 문제에 관하여(JavaScript 함수의 연습 문제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ko8@github/items/942334e1cc150bb4dea3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)