<html> <head> <script type="text/javascript"> function changeAlt() { document.getElementById("compman").alt="Man using computer" } function alertAlt() { alert(document.getElementById("compman").alt) } </script> </head> <body> <img id="compman" src="compman.gif" alt="Computerman" /> <br /> <input type="button" onclick="changeAlt()" value="Change alt text"> <br /><br /> <input type="button" onclick="alertAlt()" value="Alert alt text"> </body> </html>
编辑上面的文字,按下“查看结果”,效果会显示在右边 Create by 软晨网(RuanChen.com)