嗨,大家好,我製作了2個網站,根據數組我已經編程了徽標應該改變。我正在嘗試爲此使用JavaScript。根據IF,ELSE語句更改JavaScript徽標
場地變量已被編程並正常工作,所以我只需要填寫if語句下的部分。這些徽標都具有相同的類,因爲它們將完全插入同一個點,但顯然會根據if語句是否爲true而發生更改。
我如何得到這個if語句來處理圖像?任何建議都會很棒。
這裏我的代碼:
<script type="text/javascript">
//this not working yet changes the logo depending on the selected location
if (venue = "london"){
//SOMETHING TO OUTPUT PICTURE ?
}
else if (venue = "Manchester")
{
//SOMETHING TO OUTPUT PICTURE?
</script>
//THIS IS MY IMAGES
<img class="logo1" src="image1"/>
<img class="logo1" src="image2"/>
在哪裏你想加載圖像? – DevelopmentIsMyPassion 2014-10-03 17:25:38
因爲標誌需要根據其已經開發的場地陣列上改變..所以,如果場地是倫敦,我需要顯示不同的標誌,如果在曼徹斯特 – 2014-10-03 17:26:33