I need to copy the name of the image (name + extension) from SRC attribute without path..
HTML:
<input type="text" id="result" /><br /><br />
<img src="../some_folder/some_folder/photo_name.jpg" onclick="getName()" id="img1" />
JS:
function getName() {
document.getElementById("result").value = document.getElementById("img1").src;
}
This code clones full path of the image.. Path is not static, so I can not just cut rest of "SRC"..
Thanks in advance
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…