废话少说直接上代码function add(x, y) { var total = x + y; alert(total); return total;}add(5,10);//15这里是会弹出来 15 的但是如果这样的add(2,3,4,5);这样调用会出现什么??答案是 5 (对,...
分类:
其他好文 时间:
2015-06-11 16:52:15
阅读次数:
78
1.一个简单的代码function s(names){this.name=names;this.showname=functoin(){ alert(this.name);}} //工厂方式new s("张三").showname(); // 函数中 'this' 的理解
分类:
编程语言 时间:
2015-06-11 16:40:41
阅读次数:
113
document.onreadystatechange = function () { if (document.readyState == "complete") { document.body.style.display = "block"; ...
分类:
编程语言 时间:
2015-06-11 16:34:30
阅读次数:
186
1 /** 2 * Created by zhouhaiou on 2015/6/10. 3 */ 4 5 6 // 封装获取id的方法 7 function $(id){ 8 return document.getElementById(id); 9 }10 11 // 封装获取...
分类:
Web程序 时间:
2015-06-11 16:24:45
阅读次数:
161
1.首先是个TextBox▼2.在TextBox上注册一个点击事件用来显示下拉框如下:function showDiv(divID, txtID) {var oSelect = document.getElementById(divID);var oText = document.getElemen...
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:
其他好文 时间:
2015-06-11 16:12:11
阅读次数:
104
用jQuery为DOM元素绑定事件时,如果用下面这种方式:<buttonclass="dynamic-bind">按钮一</button>
$(function(){
$(‘.dynamic-bind‘).on(‘click‘,function(e){
alert(e.type);//’click’
});
});那么如果在绑定事件之后通过jQuery添加与该选择器相同的新的DOM元..
分类:
Web程序 时间:
2015-06-11 14:58:31
阅读次数:
118
jquery中用on来绑定事件,经常的写法有$(document).on(‘click‘,‘.classname‘,function(){});$(‘.classname‘).on(‘click‘,function(){});上面两种都是给类是classname的元素添加了click事件等同于bind()
分类:
Web程序 时间:
2015-06-11 14:52:02
阅读次数:
152
<divstyle="display:block;position:absolute;left:0px;top:0px;"id="backgroundImg"><imgsrc="img/zx-user-login/2.jpg"style="width:100%;height:100%;"/></div>
js如下:
$(function(){
$(document).ready(function(){
alert($(window).width()+","+$(..
分类:
其他好文 时间:
2015-06-11 14:51:02
阅读次数:
130
jsonp的调用,今天碰到了,正好整理了一下。
$(document).ready(function(){
$("#b01").click(function(){
$.ajax({//danielinbiti.txt文件内容:getAInfo([""])
url: 'http://192.168.12.21:8080/systemr/danieli...
分类:
Web程序 时间:
2015-06-11 14:39:31
阅读次数:
176