http://blog.csdn.net/wodetiankong516/article/details/7827256Background 有时, 我们需要将div或者其他的Element 自适应屏幕,窗口以及浏览器 , 这样会提高页面美观,提升用户体验, 只是个小问题,但是它用到的知识还是可以吸...
分类:
其他好文 时间:
2014-12-03 11:46:54
阅读次数:
169
Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The...
分类:
其他好文 时间:
2014-12-02 14:59:27
阅读次数:
184
一.写一个js步骤1、先实现布局2.在实现原理3,了解js语法二.JS如何获取元素1.通过ID名称获取元素var 变量 =document.getElementByIdx_x("id名称"); //element:元素三.把某个元素移出你的视线1.display:none; //显示无2.visib...
分类:
Web程序 时间:
2014-12-01 20:49:51
阅读次数:
158
很多朋友对DOM有感冒,这里我花了一些时间写了一个小小的教程,这个能看懂,会操作了,我相信基于DOM的其它API(如JDOM,DOM4J等)一般不会有什么问题。 后附java代码,也可以下载(可点击这里入下载)导入到Eclipse或MyEclipse。 Node和Element的关系 Element...
分类:
其他好文 时间:
2014-12-01 14:06:03
阅读次数:
293
Given an array of integers, every element appearsthreetimes except for one. Find that single one.Note:Your algorithm should have a linear runtime comp...
分类:
其他好文 时间:
2014-12-01 12:50:34
阅读次数:
155
问题一 Best Time to Buy and Sell Stock
Say you have an array for which the ith element is the price of a given stock on day i.
If you were only permitted to complete at most one transaction (ie, buy on...
分类:
其他好文 时间:
2014-11-30 23:19:36
阅读次数:
232
Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place.
Follow up:
Did you use extra space?
A straight forward solution using O(mn) space is probably a bad ide...
分类:
其他好文 时间:
2014-11-30 17:00:32
阅读次数:
223
没有难度,直接上代码了
/**
*
* @param fileName
*/
public static void createXmlUtf_8(String fileName) {
Element root = DocumentHelper.createElement("root");
Document document = DocumentHelper.create...
分类:
编程语言 时间:
2014-11-30 15:35:37
阅读次数:
145
缓冲区保存在GPU内存中1. 创建缓冲区glGenBuffers()2. 绑定缓冲区glBindBuffer()缓冲区绑定点:GL_ARRAY_BUFFER, GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, GL_ELEMENT_ARRAY_BUFFER,像素缓...
分类:
其他好文 时间:
2014-11-29 22:56:47
阅读次数:
253
一、IE8报下面错误,解决办法:网页错误详细信息消息: HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917)行: 0字符: 0代码...
分类:
Web程序 时间:
2014-11-29 17:28:07
阅读次数:
235