이 기사의 예에서는 js를 사용하여 매일 자동으로 사진을 변경하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>无标题文档</title> </head> <body> <a target="_blank" id="a"><img id="img" /></a> <script type="text/javascript"> var imgSrc = new Date().getDate() +'.jpg'; document.getElementById('img').src = imgSrc; document.getElementById('a').href = imgSrc ; </script> </body> </html>
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.