清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
JavaScript 函数
函数是由事件驱动的或者当它被调用时执行的可重复使用的代码块。
实例
<!DOCTYPE html>
<html>
<head>
<script>
function myFunction()
{
alert("Hello World!");
}
</script>
</head>
<body>
<button onclick="myFunction()">Try it</button>
</body>
</html>
<html>
<head>
<script>
function myFunction()
{
alert("Hello World!");
}
</script>
</head>
<body>
<button onclick="myFunction()">Try it</button>
</body>
</html>
扫码二维码 获取免费视频学习资料
- 本文固定链接: http://phpxs.com/j/js/1000375/
- 免费: Python视频资料获取