加入plus function

This commit is contained in:
Sabrina 2020-10-25 15:43:51 +08:00
parent ce315d1111
commit f5cd025433

View File

@ -6,6 +6,10 @@
<script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
</head> </head>
<body> <body>
<script>
function plus (a, b) {
return a+b;
}
</script>
</body> </body>
</html> </html>