我有一個網頁上的幾個簡單的按鈕,其中的OnClick一個小腳本會改變圖像顯示的源來源,但是我一直在尋找這一點,以爲我重新一遍又一遍地編寫相同的代碼,但我無法弄清楚如何改變形象,而不在一個新的功能指定SRC =「X.jpg」找到新的文件每一次,也許有更好的解決辦法?如何重複使用JavaScript來切換圖像
這裏就是我這麼遠。
<article class="large-text-area">
<button onclick="myFunction1()">Click Here to view image</button>
<script>
function myFunction1() {
document.getElementById("theImage").src = "../media/img/sketch/strip1.jpeg"
}
</script>
</article>
<!-- Section 2 -->
<article class="large-text-area">
<button onclick="myFunction2()">Click Here to view image</button>
<script>
function myFunction2() {
document.getElementById("theImage").src = "../media/img/sketch/strip2.jpeg"
}
</script>
</article>
<!-- Section 3 -->
<article class="large-text-area">
<button onclick="myFunction3()">Click Here to view image</button>
<script>
function myFunction3() {
document.getElementById("theImage").src = "../media/img/sketch/strip3.jpeg"
}
</script>
</article>
任何建議將是有益的,謝謝!
是'jQuery'的選項?或者它必須寫在'javascript'中? – Wellspring
.setAttribute(「src」中,「值」)https://developer.mozilla.org/en-US/docs/Web/API/Element/setAttribute – Shanimal
不幸的是,我工作的項目,我無法使用外部庫 –