js簡單的獲取與輸出
阿新 • • 發佈:2018-07-26
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"> varn1 = 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簡單的獲取與輸出