2015-04-04 116 views

回答

1

你不能這樣設置它。

您可以用JavaScript更改值:

<img id="image" src="picB.png" alt="can't display picture" /> 

document.getElementById("image").setAttribute("src","picA.png"); 
0

你不能這樣做的。 src屬性不解釋JavaScript。

你可以做這樣的:

<img id="picA"> 
<script type="text/javascript"> 
    function get_picAPath(){ 
     return "picA.png"; 
    } 
    document.onload = function(){ 
     document.getElementById('picA').src= get_picAPath(); 
    }; 
</script>