下面我们来看看JavaScript函数的实例详细代码
<!DOCTYPE html>
<html>
<head>
<script>
function mFunction()
{
alert("Hello CLEWO.NET !");
}
</script>
</head>
<body>
<button onclick="mFunction()">点击这里</button>
</body>
</html>
读完这篇文章后,您心情如何?
下面我们来看看JavaScript函数的实例详细代码
<!DOCTYPE html>
<html>
<head>
<script>
function mFunction()
{
alert("Hello CLEWO.NET !");
}
</script>
</head>
<body>
<button onclick="mFunction()">点击这里</button>
</body>
</html>