js에서 스팬 태그에 값을 할당하는 방법은 무엇입니까? 일반적으로 두 가지 방법이 있습니다:
첫 번째 방법: html 출력
<body onload="s()"> <span id="hello"></span> <script language="javascript"> function s(){ document.getElementById("hello").innerHTML = "<iframe src= height=400 width=300></iframe>"; } </script>
두 번째 방법: 텍스트 출력
<body onload="s()"> <span id="hello"></span> <script language="javascript"> function s(){ document.getElementById("hello").innerText = "hello world"; } </script>
페이지가 로드된 후 jquery를 통해 여러 범위에 값 할당
페이지가 로드된 후 여러 곳에 현재 시간을 표시하고 싶기 때문에 여러 스팬에 값을 할당해야 합니다.
스팬 코드는 다음과 같이 작성됩니다.
<span name="currentDate"></span> (多个span)
jQuery 작성:
<script> $(document).ready(function() { var currentDate = new Date().toLocaleDateString(); $("span[name='currentDate']").each(function() { $(this).text(currentDate); }); }); </script>