人机交互第四次实验课——JavaScript+网站布局
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了人机交互第四次实验课——JavaScript+网站布局相关的知识,希望对你有一定的参考价值。
内容——javascript学习部分
<html>
<head>
<title>LUOyu</title>
<style type="text/css">
#x1 {
background:yellow;
}
</style>
<script type="text/javascript">
function a(){
alert("hello,world");//界面输出字符
confirm("a=");//输出消息
prompt("dfkl");//用户输入
var a=10;//定义
alert(typeof(a))//打印查看类型
}
</script>
</head>
<body>
<div id="x1">dsfdsf;ds</div>
<input type="button" value="click me" onclick="a()" />
</body>
</html>
以上是关于人机交互第四次实验课——JavaScript+网站布局的主要内容,如果未能解决你的问题,请参考以下文章