Page1
function playButton(){
var pic = document.getElementById("picture");
pic.src = "http://www.baidu.com/img/baidu.gif";
}
一般先使用
var a=document.getElementById("sd");
a.src=...
function show(){
var p=document.getElementById("file1").value;
document.getElementById("s").innerHTML=" ";
document.getElementById("pic").src=p;
//alert(p);
}
...