<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Documents</title>
<script type="text/javascript">
/* 定义函数 */
function fnMyalert(){
alert("hello world ")
}
function fnChange(){
var oDiv = document.getElementById("div1");
oDiv.style.color = "pink";
oDiv.style.fontSize = "50px";
}
/* 函数执行 */
//fnChange();
</script>
</head>
<body>
<div id="div1" onclick="fnMyalert()">
这是一个DIV元素
</div>
<input type="button" name="" id="" value="改变DIV" onclick="fnChange()"/>
</body>
</html>
web----js定义函数和调用函数
最新推荐文章于 2024-02-26 17:01:39 发布