單擊提交按鈕時如何顯示隱藏圖像?單擊按鈕時出現圖像
3
A
回答
0
這將取決於你如何隱藏它。最簡單的方法是將圖像的類名從隱藏的圖像類改爲不隱藏的類。
<img src="thesource" class="hidden">
document.getElementById("theid").className = ""; // remove the hidden class.
.classHidden {
display: none;
}
5
你很幸運,我有一個空白的HTML頁面準備:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" />
<meta charset="utf-8" />
<title>Test</title>
<style type="text/css">
.hidden {
display: none;
}
</style>
</head>
<body>
<form>
<input type="submit" id="submit" onclick="document.getElementById('hidden').style.display = 'block';" />
</form>
<img id="hidden" class="hidden" src="foo.png" />
</body>
</html>
0
document.getElementById("submitBtn").onclick = function() {
document.getElementById("imageTag").style.display="block";
return true;
}
0
下面是一個例子
<img class="image_file src="image.jpg" />
<input type="submit" id="submit_button" name="submit_button" />
隱藏在CSS中的圖片:
.image_file
{
display:none;
}
使用jQuery:
$('#submit_button').click(function(
$('.image_file').show();
));
,並儘量避免內嵌的JavaScript,它的混亂和難以維持,當你有一個大的網站。
1
使用jQuery:
<img id="image1" src="myimage.jpg" style="display:none;" width="120" height="120"/>
<input type="submit" name="submit" value="submit" onclick"$('#image1').show()"/>
相關問題
- 1. 單擊按鈕時出現錯誤android
- 2. 單擊按鈕時出現NullPointerException
- 3. 單擊按鈕時出現錯誤
- 4. 單擊按鈕時出現NullPointerException
- 5. 單擊按鈕時旋轉圖像
- 6. 單擊按鈕時顯示圖像
- 7. 單擊按鈕時不顯示圖像
- 8. 單擊按鈕時更改URL圖像
- 9. 在單擊按鈕時在JLabel中顯示圖像時出現問題 - Java
- 10. 單擊全部按鈕時出現問題。 CSS按鈕
- 11. 在點擊後退按鈕加載圖像時出現問題
- 12. 當我點擊刷新按鈕時,圖像從不出現
- 13. 單擊按鈕時按鈕圖像與文本不對齊?
- 14. Android:單擊不同按鈕時更改按鈕圖像
- 15. 單擊按鈕時更改按鈕的圖像背景
- 16. 單擊按鈕時突出顯示僅圖像
- 17. Android單擊時突出顯示一個圖像按鈕
- 18. 按鈕與圖像,圖像消失點擊按鈕時iOS 10
- 19. 在按鈕按下後出現圖像
- 20. 單擊單選按鈕時出現錯誤單選Android
- 21. 如何在單擊圖像按鈕時轉動圖像?
- 22. 在圖像按鈕上點擊顯示溢出菜單點擊
- 23. 在Orbeon表單中單擊按鈕時出現錯誤
- 24. 按鈕/圖像打開彈出點擊
- 25. 單擊插件假圖像時點擊設置按鈕
- 26. 使用按鈕單擊,更改圖像
- 27. 單擊按鈕,更改2圖像
- 28. 在按鈕上單擊顯示圖像
- 29. 如何讓圖像按鈕僅在列表視圖項被點擊時出現?
- 30. 導致圖像出現/消失在按鈕點擊
你是如何隱藏的形象呢?你使用的是像jQuery,Mootools或Prototype這樣的javascript框架嗎? – 2011-05-20 07:39:55