写一个方法在前端调用时输出helloworld
时间: 2024-03-08 17:50:05 浏览: 60
BlazeDS.rar_FlashMX/Flex源码_Flex_
好的,以下是一个简单的HTML文件,其中包含一个按钮,点击按钮时会调用JavaScript函数,函数会在网页上输出"helloworld"。
```html
<!DOCTYPE html>
<html>
<head>
<title>输出helloworld</title>
</head>
<body>
<button onclick="sayHello()">点击我输出helloworld</button>
<script>
function sayHello() {
document.write("helloworld");
}
</script>
</body>
</html>
```
当你在浏览器中打开这个HTML文件,点击按钮时就会在网页上输出"helloworld"。
阅读全文