<body>
<img src="Water lilies.jpg" 
width="800" height="600"  onclick="javascript:myfun()"/>
</body>
</html>
<script language="javascript">
function myfun(){
   alert("触发函数!");
}
</script>