javascript超链接onclick事件的例子

发布时间:2019-11-11编辑:脚本学堂
有关javascript触发a标签超链接上onclick事件的例子,javascript超链接标签的方法,需要的朋友参考下。

例子:
 

复制代码 代码示例:
<!doctype html public "-//w3c//dtd html 4.0 transitional//en"> 
<html> 
<head> 
<title>javascript超链接onclick事件 - www.osxue.com </title> 
</head> 
<script> 
 var test = function(){ 
 alert("hello"); 

</script> 
<body> 
<a href="javascript:test()">test</a> 
</body> 
</html>