最近在写jQuery的时候出了这样一个问题?
.clicked{
width: 100px;
height: 40px;
border-radius: 3px;
background-color: #cba;
}
yes
$(document).ready(function(){ $('a').click(function(){...
分类:
Web程序 时间:
2014-06-11 00:49:10
阅读次数:
225
document.body.clientWidth获取body元素对象的内容可视区域的宽度,即clientWidth=width+padding,不包括滚动条。document.body.clientHeight获取body元素对象的内容可视区域的高度,即clientHeight=height+pa...
分类:
Web程序 时间:
2014-06-10 20:23:17
阅读次数:
305
定义及应用
定义
stuff = {'name': 'Zed', 'age': 36, 'height': 6*12+2}#key:value pairs
实例
# create a mapping of state to abbreviation
states = {
'Oregon': 'OR',
'Florida': 'FL',
'California':...
分类:
编程语言 时间:
2014-06-10 15:46:14
阅读次数:
266
题目
Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histogram.
Above is a histogram w...
分类:
其他好文 时间:
2014-06-10 15:34:02
阅读次数:
252
作为前端开发人员,在日常的页面制作时,不可避免的会碰上这样那样的问题,我挑选了其中的一些进行总结归档,希望对大家会有所帮助:1、如何定义高度很小的容器?
在IE6下无法定义小高度的容器,是因为有一个默认的行高。列举2种解决方案:overflow:hidden | line-height:02、图片下...
分类:
Web程序 时间:
2014-06-10 08:39:03
阅读次数:
314
//默认值函数参数
/*
* Test.cpp
*
* Created on: 2014年6月9日
* Author: John
*/
#include
#include
#define Pi 3.14
void FunTest(double Radius, double Height=0);
...
分类:
编程语言 时间:
2014-06-10 06:43:40
阅读次数:
343
Given a binary tree, determine if it is
height-balanced.For this problem, a height-balanced binary tree is defined as a
binary tree in which the depth...
分类:
其他好文 时间:
2014-06-10 00:54:41
阅读次数:
313
name = $name; $obj_person->age = $age;
$obj_person->height = $height; return $obj_person; }} $obj_person = new
Person();$class_data = $obj_person->...
分类:
Web程序 时间:
2014-06-09 19:41:52
阅读次数:
339
网上已经有很多类似的记录了,这里写这个是给自己在项目中碰到的问题做个简单的记录,以后将持续更新1.IE67 border-bottom失效
一个a标签,想要使用移上去后会在下面显示一个横条,我用border-bottom做了一个效果,IE6
7必须加了line-height后才能显示,应该是因为没....
分类:
其他好文 时间:
2014-06-09 16:00:46
阅读次数:
209
var allchooseEmpID = "";var allchooseEmpName =
"";//自选经办人 function getJbrWinForMy() { top.MainFrameJS.openWindow({ width: 800,
height: 600, modal: tr....
分类:
Web程序 时间:
2014-06-09 14:36:12
阅读次数:
327