发布网友 发布时间:2024-09-15 04:01
共1个回答
热心网友 时间:2024-10-08 12:32
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>menu</title>
<style type="text/css">
</style>
<script type="text/javascript">
onload = function ()
{
var a = document.querySelector ("a");
a.onclick = function ()
{
if (this.disabled)
{
return false;
}
this.style.color = 'grey';
this.disabed = true;
};
}
</script>
</head>
<body>
<a href="#">aaaaaa</a>
</body>
</html>