javascript学习笔记1:return,onclick,confirm,oncontextmenu,window的event和注释和排错

// javascript的单行注释符
两个斜杠是javascript的单行注释

oncontextmenu
Fires when the user clicks the right mouse button in the client area, opening the context menu,当用户右键单击页面的时候,打开一个右键菜单

return关键字,举例
    <script language=”javascript”>
         function myfunction(a,b){
         var r;
          r = a+b;
         return(r)
         }
window.alert(myfunction(3,2));
</script>

onclick关键字
onclick=”所要执行的脚本”

<html>
<body>
文本一:<input type="text" id="field1" value="你好!">
<br />
文本二:<input type="text" id="field2">
<br /><br />
点击按钮复制文字
<br />
<button onclick="document.getElementById('field2').value=
document.getElementById('field1').value">复制文字</button></body>
</html>

confirm关键字
Displays a confirmation dialog box that contains an optional message as well as OK and Cancel buttons.显示一个包含ok或者cancel的确认框。
<script language=”javascript”>
var a=”请按确定按钮”
window.confirm(a);
</script>

window.event.returnValue
event
:代表事件状态,如事件发生的元素,键盘状态,鼠标位置和鼠标按钮状态
returnValue:设置或获取事件的返回值。

javascript排错
1、分段加入alert语句,查看alert的效果,确定出错的范围
2、查看浏览器状态栏的警告

发表回复

您的电子邮箱地址不会被公开。