javascript 获得标签对象属性 如 SRC路径 IMG

<html>
<script language="javascript">
function getImg(){
if(window.envent.srcElement.tagName=="IMG")

     alert(window.event.srcElement.src);


}
</script>

<body>
<IMG onclick="" src="/opp/ppp/p">

</body>

</html>

你可能感兴趣的:(JavaScript)