- 浏览: 590857 次
- 性别:
- 来自: 深圳
最新评论
-
明明如月:
这个方法不错
解决Failed to execute goal org.apache.maven.plugins -
srhlwdamon:
可是我的为什么解决不了。。。。。。。。。!!
解决Failed to execute goal org.apache.maven.plugins -
di1984HIT:
写的不错。
Memcached 在window下部署和测试示例 -
只为学英语:
正解,十分感谢
解决Failed to execute goal org.apache.maven.plugins -
落雪封:
谢谢,解决了,少导入jar包了
Spring MVC 的json问题(406 Not Acceptable)
文章列表
1.
$(function(){
});
2.
$(function(){
$("#result").append("macrotea");
});
3.
$(document).ready(function() {
$("#username").bind("click",function() {
$(this).val("");
});
});
4.
<script type="text/javascript&qu ...
<body>
一.基本选择器
1.ID选择器:$("#temp").addClass("bgred");
2.类选择器:$(".temp").addClass("bgred");
3.合选择器:$("#temp,#test").addClass("bgred");
二.层次选择器:
1.后代选择器:$("form label").addClass("bgred");//只要label的上级有form则会应用上样式
...
$(document).ready(function() {
$("#dataTable tr:odd").addClass("bgred");
$("#dataTable tr:even").addClass("bggreen");
$("#dataTable tr").mouseover(function() {
$(this).addClass("bgwhite");
});
$("#dataTable tr" ...
一.基本选择器
1.ID选择器:$("#temp").addClass("bgred");
2.类选择器:$(".temp").addClass("bgred");
3.合选择器:$("#temp,#test").addClass("bgred");
二.层次选择器:
1.后代选择器:$("form label").addClass("bgred");//只要label的上级有form则会应用上样式
2.孩子选择器:$(&qu ...
<script>
for (var i = 0; i < 5; i++) {
$("<div>").appendTo(document.body);
}
$("div").click(function () {
$(this).hide(2000, function () {
$(this).remove();
});
});
</script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; char ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset ...
<script type="text/javascript">
$(document).ready(function() {
$("#link").click(function(event) {
alert("不再转到jquery.com");
event.preventDefault();
});
});
</script>
UltraISO:
注册名:李明
注册码:509F-BA54-BBA6-73C5
光盘刻录大师 V6.2 http://www.duote.com/soft/12638.html
78241-76852-10000-13508-26630
80798-63892-10000-13704-38224
11111-22222-10000-08344-75505
MyEclipse:
name:myeclipse8.5
code:zLR8ZC-855550-68567156703100078
自己动手-括号的区别
- 博客分类:
- Javacript
function init() {
alert("abc");
return function() {
alert("123");
}
}
// window.onload=init;//方法的引用
window.onload = init();// 方法的返回值
<body>
<input type="submit" name="button" id="button" value="点击" />
<script type="text/javascript">
document.getElementById("button").onclick=function(){
alert(this.id);
}
document.getElementById("button" ...
function init(){
var student={
name:"macrotea",
age:25,
getName:function(){
alert("alert name");
},
getAge:function(){
alert("alert age");
}//这里不要有逗号
}
alert(student['name']);//为什么说JAVASCRIPT中对象就是一个数组
alert(student['age']);
alert(student ...
function Person(){
this.name="unseted";
this.sex="boy";
this.getName=function(){
alert(this.name);
}
this.classroom="Person classroom"
};
Person.prototype.getClassRoom=function(){};
/*为类添加属性或者方法有2种方式:
* 1.在构造方法中添加
* 2.在原型链中添加,原型是一个对象,对象通俗说又是一个数组,只是f ...
对象就是包含一组变量和函数的集合实例。
通常对象由类派生而来,而类定义了对象拥有的属性和方法。如果你的脚本都是对象之间的交互操作那么就可以说这个脚本是面向对象的脚本。
JavaScript是一种基于原型(prototype)的面向对象的语言,没有类的概念,所有的一切都派生自现有对象的一个副本
var obj = new Object();等同于var obj = {};
var arry = new Array();等同于var arry = [];
原型只存在于function中,它实质就是一个对象被创建后引擎默认创建一个空的prototype对象,既然对象是属性包那 ...