- 浏览: 68197 次
- 性别:
- 来自: 沈阳
最新评论
-
wangyunhom:
...
Java的内存机制
文章列表
<html>
<body>
<script type="text/javascript">
function employee(name,job,born)
{
this.name=name;
this.job=job;
this.born=born;
}
var bill=new employee("Bill Gates","Engineer",1985);
employee.prototype.salary=null;
bill.salary=20000;
...
var creatediv = function(){
var parentdiv=$('<div></div>'); //创建一个父div
parentdiv.attr('id','parent'); //给父div设置id
parentdiv.addClass('parentdiv'); //添加css样式
var childdiv=$('<div></div>'); //创建一个子div
childdiv.attr('id','chil ...
查询及删除重复记录的SQL语句
1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断
select * from people
where peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1)
2、删除表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断,只留有 rowid最小的记录
delete from people
where peopleId in (select ...
1新建记事本
2for /r . %%a in (.) do @if exist "%%a\.svn" rd /s /q "%%a\.svn"
3重命名 删除SVN信息.bat
4双击运行
template
- 博客分类:
- JavaScript
(function(){
template = {
userData:null,
importHead:function(opts){
$("#fr_header").html($.ajax({url:"template/head_template.htm",async:false}).responseText);
$(".nav ul li").removeClass("nav_sel");
$("#"+opts.hover).addClass(" ...
function getDatas(layerId){
var query = main.querys[layerId];
if(undefined == query){
console&&console.log(layerId + "未设置查询参数");
return;
}
var dfd = $.Deferred();
setTimeout(function(){//时序
ds.post(query.cmd, query.opts, function(data,total){
query.data = ...
jQuery 阻止事件冒泡
- 博客分类:
- JavaScript
http://www.cnblogs.com/jiqing9006/archive/2012/09/11/2679831.html
function playVideo(channel){
if(channel == undefined || channel == ""){
return;
}
DPSDK.play(channel);
window.event.stopPropagation && window.event.stopPropagation();
window.event.cancelBubble &&a ...
WEB容器在启动时,它会为每个WEB应用程序都创建一个对应的ServletContext对象,它代表当前web应用。
ServletConfig对象中维护了ServletContext对象的引用,开发人员在编写servlet时,可以通过ServletConfig.getServletContext方法获得ServletContext对象。
由于一个WEB应用中的所有Servlet共享同一个ServletContext对象,因此Servlet对象之间可以通过ServletContext对象来实现通讯。ServletContext对象通常也被称之为context域对象。
1.多个Se ...
1、启动一个WEB项目的时候,WEB容器会去读取它的配置文件web.xml,读取<listener>和<context-param>两个结点。
2、紧急着,容创建一个ServletContext(servlet上下文),这个web项目的所有部分都将共享这个上下文。
3、容器将<c ...
JS中的变量是松散类型(即弱类型)的,可以用来保存任何类型的数据。
typeof 可以用来检测给定变量的数据类型,可能的返回值:
1. 'undefined' --- 这个值未定义;
2. 'boolean' --- 这个值是布尔值;
3. 'string' --- 这个值是字符串;
4. 'number' --- 这个值是数值;
5. 'object' --- 这个值是对象或null;
6. 'function' --- 这个值是函数。
var param1 = "string";
var param2 = new Objec ...
max-width:300px;WORD-WRAP:break-word;
function HashMap() {
/** Map大小* */
var size = 0;
/** 对象* */
var entry = new Object();
/** Map的存put方法* */
this.put = function(key, value) {
if (!this.containsKey(key)) {
size++;
entry[key] = value;
}
};
/** Map取get方法* */
this.get = function(key) {
return this.contain ...
回调函数
http://blog.csdn.net/luoweifu/article/details/41466537
JavaScript的self和this使用小结
http://www.cnblogs.com/uedt/articles/1748422.html
http://www.cnblogs.com/reommmm/archive/2010/01/20/1652469.html
http://www.cnblogs.com/litao229/archive/2009/06/23/1509379.html
获取网页上的数据
http://blog.csdn.net/zgyulon ...