1. 程式人生 > >js簡單的獲取與輸出

js簡單的獲取與輸出

result change ice document 標簽 內容 res value val

js獲取標簽內容和輸出內容到頁面

獲取:

html:

<select id="choiceSelect" onchange="changeImg()">
  <option value="1">石頭</option>
   <option value="2">剪刀</option>
   <option value="3"></option>
</select>
<img src="img/1.png" id="img1">

js:

<script type="text/javascript">
        var
n1 = 1;function changeImg(){ var changeImg = document.getElementById("choiceSelect"); n1 = changeImg.value; // alert(n1); document.getElementById("img1").src="img/"+n1+".png"; }</script>

輸出:

html: <p id = "finalresult"></p>

js: document.getElementById("finalresult").innerHTML = "輸出的內容";

js簡單的獲取與輸出