1、DOM中的所有节点都继承自Node类型,IE9之前将DOM节点作为COM对象来实现;每个DOM节点都有一个nodeType属性来表明节点类型,总共有12个类型:
1 Node.ELEMENT_NODE 2 Node.ATTRIBUTE_NODE 3 Node.TEXT_NODE 4 Node.C...
分类:
其他好文 时间:
2014-05-20 00:53:25
阅读次数:
297
最近在做毕设的收尾工作,很多程序都要部署到linux下来运行,遇到了挺多问题,昨天就集中性遇到了 在编译应用时,遇到了/usr/bin/ld: cannot
find -lxxx这种情况是系统找不到对应的库文件,其中,-lxxx表示链接库文件 libxxx.so。其命名规则是:lib+库名(即xxx...
分类:
其他好文 时间:
2014-05-19 21:30:52
阅读次数:
226
Question 1: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...
分类:
其他好文 时间:
2014-05-19 09:35:41
阅读次数:
321
Given an array of non-negative integers, you
are initially positioned at the first index of the array.Each element in the
array represents your maximu...
分类:
其他好文 时间:
2014-05-19 08:23:07
阅读次数:
223
Given an array of non-negative integers, you
are initially positioned at the first index of the array.Each element in the
array represents your maximu...
分类:
其他好文 时间:
2014-05-19 08:07:26
阅读次数:
288
Say you have an array for which theithelement
is the price of a given stock on dayi.If you were only permitted to complete at
most one transaction (ie...
分类:
其他好文 时间:
2014-05-18 20:30:16
阅读次数:
301
Working with SubscriptionsApps that use
subscriptions have some additional behaviors and considerations. Because
subscriptions incorporate an element ...
分类:
移动开发 时间:
2014-05-18 19:49:05
阅读次数:
548
早上公交上总想这个问题,终于写出来了,不知道有错误没 1 $chinese =
array("零","一","二","三","四","五","六","七","八","九"); 2 $str = 140032002005; 3 $arr =
array(); 4 ...
分类:
其他好文 时间:
2014-05-18 19:27:44
阅读次数:
262
上午解决了一个问题是xml的解析,Ws接口返回值只有结点没有属性,所以开始调用Element的获取属性值方法总失败,后来突然想到结点没有属性的,我只是想去下级结点的值,然后调用了valueOf()传入指定的结点名称后成功。下午解决了Ws调用返回值处理问题,由于对方提供的Ws接口需要传入服务及参数名和...
分类:
其他好文 时间:
2014-05-17 22:01:55
阅读次数:
329
1:array_shift():调用了方法是把第一个值移除(算法:先进先出)2:array_pop():调用了方法是把最后一个移除,但是返回的是最后一值(算法:后进先出)3:mysql_affected_rows():表示几行受影响,成功,肯定是大于0,否则失败4:正则表达式
例:var reg.....
分类:
Web程序 时间:
2014-05-17 21:06:55
阅读次数:
335