script常用类型和事件

常用的类型:
1.数学:
Math.ceil():天花板数
Math.floor():地板数
Math.round():四舍五入取整数
Math.random():生成0-1之间的随机数

2.日期时间:
var s = new Date();
var s = new Date(1999,7,23);
函数:
getFullYear():
getMonth():
getDate():获取日
getHours()
getMinutes()
getSeconds()
getDay():获取星期
setFullYear(year,month,day)
setHours(hour,minute,second,ms)
toLocaleDateString():转化为本地的日期时间格式字符串

3.字符串
length:字符串的长度
toLowerCase()
toUpperCase()

//压缩字符串中的两端空格。
function Trim(m){
while((m.length>0)&&(m.charAt(0)==‘ ‘))
m = m.substring(1, m.length);
while((m.length>0)&&(m.charAt(m.length-1)==‘ ‘))
m = m.substring(0, m.length-1);
return m;
}

indexOf("子串"):第一次出现的位置
lastIndexOf("子串"):最后一次出现的位置
以上两个方法,如果父串中不包含子串,则返回-1

substr("起始位置","截取长度")
substring("起始位置","结束位置")

事件:(事件源,事件数据,事件处理程序)
一、最常用的鼠标事件
onclick:当鼠标单击的时候,要执行的代码。
ondblclick:当鼠标双击的时候,要执行的代码。
onmouseover:当鼠标移动到元素上时,要执行的代码。

onmouseout:当鼠标从元素上离开时,要执行的代码。
<示例>光棒效果。
onmousedown:
onmouseup:
<示例>使用这两个事件,用span做出一个模拟的按钮。

<script>
function  dodown(dd)
{
    dd.style.borderColor="black";
    dd.style.backgroundColor="green";
    dd.style.margin="10px 0px 0px 10px"
    }
    function  doup(dd)
{
    dd.style.borderColor="red";
    dd.style.backgroundColor="#9c9";
    dd.style.margin="0px 0px 0px 0px"
    }
</script>
</head>

<body>
<span style="display:inline-block;padding:5px;background:#9C9;border:3px solid red" onmousedown="dodown(this)" onmouseup="doup(this)"> click me</span>
</body>

 点击后的效果:

案例 光棒效果

<body>
<table width="300" border="1">
  <tr style="background-color:#F00" onmouseover="show(this)" onmouseout="done(this)">
    <td >&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr  onmouseover="show(this)" onmouseout="done(this)">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr style="background-color:#F00"  onmouseover="show(this)" onmouseout="done(this)">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr  onmouseover="show(this)" onmouseout="done(this)">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr style="background-color:#F00"  onmouseover="show(this)" onmouseout="done(this)">
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>

</body>
</html>
<script language="javascript">
var s="white"
function show(dd)
{    s=dd.style.backgroundColor;
    dd.style.backgroundColor="blue"
    }
    function done(dd)
{
    dd.style.backgroundColor=s
    }
</script>

案例:刮刮乐

<style type="text/css">
.wai
{
    border:2px ridge #F00;
    width:128px;height:128px;margin:10px;
    float:left;
    position:relative;
    left:70px

    }
    .nei
    {
        background-color:#F00;
        width:128px;height:128px}
        #btn
        {float:left;
        width:100%;
        text-align:center;
        }
        #main
        {
            width:900px;
            margin:auto;
            }

</style>
<script language="javascript">
var num=0;
function show(dd)
{
    dd.style.display="none";

    var s=dd.parentNode.getAttribute("haha");/******上一层的查询*****/
    if(s=="1")
    {alert("恭喜中奖");
    window.location.reload();/*******中奖自动重置******/
    }

num+=1;/** 10次都没有自动重置***/
if(num==10&&s!=1)
{alert("再来10块钱!");
    window.location.reload();
}
}

</script>
</head>

<body>
<div id="main">

<div class="wai" ><div class="nei" onclick="show(this)"></div></div>
<div class="wai"><div class="nei" onclick="show(this)"></div></div>
<div class="wai"><div class="nei" onclick="show(this)"></div></div>
<div class="wai"><div class="nei" onclick="show(this)"></div></div>
<div class="wai"><div class="nei" onclick="show(this)"></div></div>
<div class="wai"><div class="nei" onclick="show(this)"></div></div>
<div class="wai"><div class="nei" onclick="show(this)"></div></div>
<div class="wai"><div class="nei" onclick="show(this)"></div></div>
<div class="wai"><div class="nei" onclick="show(this)"></div></div>
<div class="wai"><div class="nei" onclick="show(this)"></div></div>

<div id="btn" align="center"><input id="hh"  type="button" onclick="huanyuan()"value="重置"></div>
</div>
</body>
</html>
<script>
var divs=document.getElementsByTagName("div");

for(var i=0;i<divs.length;i++)
{     if(divs[i].className=="wai")
    {

     var n=(Math.round(Math.random()*100000000)%10)+1;

     var path="images/"+n+".png";
     divs[i].style.backgroundImage="url("+path+")"/****随机图片的加载方法*****/
     if(n==1)
     {
         divs[i].setAttribute("haha","1");
         }

    }

}

    function huanyuan()
    {window.location.reload()}    

</script>

手机抽奖

<style>
.no1
{
    margin:20px;

    border:5px dashed #FF0000;
    width:100%

    }
    #main
    {width:400px;
        margin:auto;
        text-align:center;
        font-family:华文行楷;
        font-size:50px
        }
    #begin
    {margin:20px;
        background:#03F;
        border:2px solid red;
        padding:5px
        }
        </style>
</head>

<body>
<div id="main">
<div id="show" class="no1">XXXXXXXXXXX</div>
<span id="begin" onclick="dobegin()">开始</span>
</div>
</body>
</html>
<script>
var a=new Array();
a[0]=17685602035;
a[1]=13853350543;
a[2]=15344564298;
a[3]=18344564676;
a[4]=13344564043;
a[5]=15644564545;
a[6]=15534456440;
a[7]=15734452222;
a[8]=12344564111;
a[9]=12344564333;
var timeid;
function doshow()
{
var n=Math.round (Math.random()*10000000)%10;
var s=a[n];
var dd=document.getElementById("show");
dd.innerHTML = s;
timeid=window.setTimeout("doshow()","50");/*延时**/
}
function dobegin()
{  var gg=document.getElementById("begin")
if(gg.innerHTML=="开始")
{    doshow();
    gg.innerHTML="停止";
    }
    else
    {gg.innerHTML="开始";
    window.clearTimeout(timeid)/**定义的变量来代替doshow()**/
    document.getElementById("show").innerHTML="17685602035"/*作弊*/
        }

}
</script>

时间: 2024-10-10 17:12:36

script常用类型和事件的相关文章

JS常用类型事件

常用的类型:1.数学:Math.ceil():天花板数Math.floor():地板数Math.round():四舍五入取整数Math.random():生成0-1之间的随机数 2.日期时间:var s = new Date();var s = new Date(1999,7,23);函数:getFullYear():getMonth():getDate():获取日getHours()getMinutes()getSeconds()getDay():获取星期setFullYear(year,mo

JavaScript中,有三种常用的绑定事件的方法

要想让 JavaScript 对用户的操作作出响应,首先要对 DOM 元素绑定事件处理函数.所谓事件处理函数,就是处理用户操作的函数,不同的操作对应不同的名称. 在JavaScript中,有三种常用的绑定事件的方法: 在DOM元素中直接绑定: 在JavaScript代码中绑定: 绑定事件监听函数. 一. 在DOM元素中直接绑定 这里的DOM元素,可以理解为HTML标签.JavaScript支持在标签中直接绑定事件,语法为:    onXXX="JavaScript Code" 其中:

如何使用JavaScript快速的创建一种常用类型的导航组件:sidebar

本文标签: JavaScript小技巧 JavaScript JavaScript函数 JavaScript处理sidebar JavaScript导航组件 sidebar是一种常用类型的导航组件,它可从页面旁侧弹出,覆盖在正常内容上. 假设你的正常内容为: <div id="main"> Placeholder<p> Placeholder<p> Placeholder<p> </div> 现在我们可以在内容内加入sideb

javascript中的常用表单事件用法

下面介绍几种javascript中常用的表单事件: 一,onsubmit:表单中的确认按钮被点击时发生的事件,如下案例. 案例解析:弹出表单中提交的内容 <form name="testform" action="#" id="form"> What is your name?<br /> <input type="text" name="fname" /> <in

JQuery常用实用的事件[较容易忽略的方法]

       JQuery常用实用的事件 注:由于JQuery片段较多就没有用插入代码文本插入,请见谅!JQuery 事件处理ready(fn)代码:   $(document).ready(function(){   });作用:它可以极大地提高web应用程序的响应速度.通过使用这个方法,可以在DOM载入就绪能够读取并操 纵时立即调用你所绑定的函数,而99.99%的JavaScript函数都需要在那一刻执行. bind(type.[data],fn)代码: $("p").bind(&

事件类型(鼠标事件)

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" con

04-MySQL的存储引擎和列的常用类型

1. MySQL中的数据库分类        2. MySQL中的存储引擎 MySQL中的数据用各种不同的技术存储在文件(或者内存)中.这些技术中的每一种技术都使用不同的存储机制.索引技巧.锁定水平并且最终提供不同的功能和能力.通过选择不同的技术,你能够获得额外的速度或者功能,从而改善你的应用的整体功能. MyISAM:拥有较高的插入,查询速度,但不支持事务,不支持外键. InnoDB:支持事务,支持外键,支持行级锁定,性能较低.InnoDB 存储引擎提供了具有提交.回滚和崩溃恢复能力的事务安全

iOS核心动画中的常用类型

CATransaction 当我们在自定义的图层上修改某些支持动画的属性时,系统会为该属性的修改自动产生动画.这种其实属于隐式动画.隐式动画要得益于CATransaction. 一个CATransaction从调用CATransaction.begin()开始,以CATransaction.commit()结束.在这其间对图层属性的修改,会受该Transaction的控制,可以通过setAnimationDuration修改Transaction的duration. 系统的隐式动画是因为在Run

Underscore.js 常用类型判断以及一些有用的工具方法

1. 常用类型判断以及一些有用的工具方法 underscore.js 中一些 JavaScript 常用类型检查方法,以及一些工具类的判断方法. 首先我们先来谈一谈数组类型的判断.先贴出我自己封装好的函数. 第一: 在ES5里面有一个检测数组的函数,就是Array.isArray(); (毕竟原生的才是最屌的)但是如果老版本的浏览器不支持ES5呢.那怎么办 所以我们这个时候要想其他的办法.   来回忆下 instanceof 运算符的使用方式.a instanceof b,如果返回 true,表