JavaScript笔记_3

 <html>
<head>
<script type="text/javascript">
function display_alert()
{
alert("警告!警告!");
}
</script>
</head>
<body>
<input type="button" onclick="display_alert()" value="显示警告框" />
</body>
</html>

 

--确认框:
确认框用于使用户可以验证或者接受某些信息。
当确认框出现后,用户需要点击确定或者取消按钮才能继续进行操作。
如果用户点击确认,那么返回值为 true。如果用户点击取消,那么返回值为 false;

<html>
<head>
<script type="text/javascript">
function show_confirm()
{
var str=confirm("Press a button!");
if (str==true)
  {
  alert("You pressed OK!");
  }
else
  {
  alert("You pressed Cancel!");
  }
}
</script>
</head>
<body>
<input type="button" onclick="show_confirm()" value="Show a confirm box" />
</body>
</html>

 --提示框
提示框经常用于提示用户在进入页面前输入某个值。
当提示框出现后,用户需要输入某个值,然后点击确认或取消按钮才能继续操纵。如果用户点击确认,那么返回值为输入的值。如果用户点击取消,那么返回值为 null。

<html>
<head>
<script type="text/javascript">
function disp_prompt()
  {
  var name=prompt("请输入您的名字","张三")
  if (name!=null && name!="")
    {
    document.write("你好!" + name + " 今天过得怎么样?")
    }
  }
</script>
</head>
<body>
<input type="button" onclick="disp_prompt()" value="显示提示框" />
</body>
</html>

 

 8.JavaScript 函数
将脚本编写为函数,就可以避免页面载入时执行该脚本。
函数包含着一些代码,这些代码只能被事件激活,或者在函数被调用时才会执行。
你可以在页面中的任何位置调用脚本(如果函数嵌入一个外部的 .js 文件,那么甚至可以从其他的页面中调用)。

--函数在页面起始位置定义,即 <head> 部分:

<html>
<head>
<script type="text/javascript">
function dis_message()
{
alert("Hello World!")
}
</script>
</head>
<body>
<form>
<input type="button" value="Click me!" onclick="dis_message()" >
</form>
</body>
</html>

 

例子中的 alert("Hello world!!") 由于被写入函数,故只有当点击click按钮时才会显示;
--创建函数的语法:
function 函数名(var1,var2,...,varX)
  {
  代码...
  }
var1, var2 等指的是传入函数的变量或值。{ 和 } 定义了函数的开始和结束。
--return 语句
return 语句用来规定从函数返回的值。

 

你可能感兴趣的:(JavaScript,html,脚本)