0
我正在嘗試更改另一圖像的圖像源。如何在javascript中更改源圖像?
<script type="text/javascript">
document.getElementById("imgbulb").onclick= function() {
document.getElementById("imgbulb").Src ="C:\Html\images\ bbc.png";
}
</script>
可能是欺騙:http://stackoverflow.com/questions/7312553/change-image-source-with-javascript在你的情況下,嘗試使用小寫的'src'。 –
我已經嘗試過使用小寫'src',但沒有奏效。 –
您的瀏覽器是沙箱版,並且無法訪問您的本地文件系統,如「C:\ Html \ images \ bbc.png」。試試像「file:// relative-path-to-file」。 –