摘要:
<body> <!-- 判断数组中是否存在60这个元素 返回布尔类型 --> <script type="text/javascript"> var arr=[1,2,5,6,4,8,4,4,4,5] function has(arr,n){ //判断数组里面有没有n这个数据 //先假设数组里面没有 阅读全文
摘要:
<style type="text/css"> span{ border: double 2px orangered; background-color: orange; } b{ color: red; } b:hover{ background-color: yellow; font-size: 阅读全文
摘要:
<body> <div style="margin:0 auto"> <h2>用户注册</h2> <form name="regform" action=""> <div class="mystyle">用户名:<input type="text" value="" id="user" name=" 阅读全文
摘要:
<body> <div style="margin:0 auto"> <h2>用户注册</h2> <form name="regform" action=""> <div class="mystyle">用户名:<input type="text" value="" id="user" name=" 阅读全文
摘要:
<script type="text/javascript"> var arr2=[23,56,8,4,6,9,2,0,13,55,94,344,3] /* 选择排序 * 假设外层循环变量 * 里层循环变量开始时外层变量+1 * 交换外层变量 */ for ( var i=0;i<arr2.leng 阅读全文
摘要:
<script type="text/javascript"> /* btn.onclick=function() { console.log('我被点击了') }*/ //报错 // 浏览器事件绑定在windown上// 表示当所有资源加载完毕后触发 window.onload=function( 阅读全文