因为<a></a>的个数不定,而且一段时间后自动更新,所以不可能用onload给合getElementsByTagName("a")给每个都加上onclick="abc()".
请问有什么简单的方法呢?
如果有象css中的:a{....}就把<a>全控制了就好了.
<html>
<head>
<title>TEST</title>
</head>
<script language='javascript'>
function LButtonDown(){
if ( window.event.srcElement.tagName == 'A' ){
//这里加入你需要处理的代码
}
}
</script>
<body onclick="LButtonDown();">
<a href='#'>TEST</a>
</body>
</html>
请问有什么简单的方法呢?
如果有象css中的:a{....}就把<a>全控制了就好了.
<html>
<head>
<title>TEST</title>
</head>
<script language='javascript'>
function LButtonDown(){
if ( window.event.srcElement.tagName == 'A' ){
//这里加入你需要处理的代码
}
}
</script>
<body onclick="LButtonDown();">
<a href='#'>TEST</a>
</body>
</html>
回复Comments
{commenttime}{commentauthor}
{CommentUrl}
{commentcontent}