js給span標籤賦值的方法?一般有兩種方法:
第一種方法:輸出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值
由於我想在頁面載入完成後,有幾個地方顯示當前時間,所以我需要給多個span賦值。
span程式碼的寫法如下:
<span name="currentDate"></span> (多个span)
jQuery寫法:
<script> $(document).ready(function() { var currentDate = new Date().toLocaleDateString(); $("span[name='currentDate']").each(function() { $(this).text(currentDate); }); }); </script>