JavaScript 数组
var arr = [ 1,2,77,8,4,5 ]; var str = 'xuanmo blog'; arr.length = 0; //清空数组的方法,让length等于0; arr = []; /...
var arr = [ 1,2,77,8,4,5 ]; var str = 'xuanmo blog'; arr.length = 0; //清空数组的方法,让length等于0; arr = []; /...
获取select等值$("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发 var checkText=$("#select_id").find("option:selected").tex...
var aLi = $("ul li"); var onOff = true; $("#box p").click(function() { if (onOff) { $("#box ul&q...
each()方法能使DOM循环结构简洁,不容易出错。each()函数封装了十分强大的遍历功能,使用也很方便,它可以遍历一维数组、多维数组、DOM, JSON 等等在javaScript开发过程中使用$each可以大大的减轻我们的工作量。下面...
<input type=button value=刷新 onclick="window.location.reload()"> <input type=button value=前进 onclick="window.history.go(1)">&nbs...
这个是一js的判断input数字输入的实例,一旦输入非数字内容,将会input设置为空,自己可以进行定义其他的方法去进行提示操作。<input type="text" id="" name=""&n...
先是html代码:XML/HTML代码<div id="header_demo"> <a id="logo" href="#">Rainweb</a> &nbs...
jQuery on()方法是官方推荐的绑定事件的一个方法。$(selector).on(event,childSelector,data,function,map)由此扩展开来的几个以前常见的方法有.bind()$("p").bind("click",function(){ ...
js://添加搜藏function AddFavorite() { var title = document.title; var url = document.URL; &...
function stopPro(e) { if (e && e.stopPropagation) { //W3C取消冒泡事件  ...
将数据转换成url传递的链接地址参数 /** * 将数组组合成GET条件 * @param [type] $data [d...
JQuery的extend扩展方法:Jquery的扩展方法extend是我们在写插件的过程中常用的方法, 该方法有一些重载原型, 在此, 我们一起去了解了解。一、 Jquery的扩展方法原型是: extend(dest, src1...