码迷,mamicode.com
首页 >  
搜索关键字:element    ( 12012个结果
angularjs 从外部改变controller内的数据
var appElement = document.querySelector('[ng-controller=seatsCtrl]');var $scope = angular.element(appElement).scope();$scope.$apply(function () { $sco...
分类:Web程序   时间:2014-06-26 20:12:05    阅读次数:551
提取新闻下一页
package com.unbank.robotspider.util;import java.util.HashMap;import java.util.Map;import org.jsoup.nodes.Document;import org.jsoup.nodes.Element;impor...
分类:其他好文   时间:2014-06-26 19:07:20    阅读次数:204
创建getElementByClassName
getElementByClassName在JavaScript 内建的核心中,document对象及element对象总共可以通过三个方式来获取其下的元素,分别是:getElementById('id') 、getElementsByName('name')、getElementsByTagNam...
分类:其他好文   时间:2014-06-25 17:24:23    阅读次数:165
XML XPath语法总结
刚刚遇到一个多重查询xmlDoc.SelectSingleNode(“Root/Element[@Name='大气象'][@Age='30']”)根据innerText查询xmlDoc.SelectSingleNode(“Root/Element[text()='大气象']”)顺便收集总结一下。Xm...
分类:其他好文   时间:2014-06-25 17:00:31    阅读次数:165
求一个二叉树中距离最远的两个节点
/*求二叉树中距离最远的两个点 * 基本思路: * 递归计算两棵树的最大高度,设置一个全局变量,距离最远的两个节点element * 其中:在计算左子支,直接刷新上述全局变量,在计算右边子支时,设置两个临时Node变量,变量里的element用于 * 保存右边子支的两个最远距离。根据比较两个距离的大...
分类:其他好文   时间:2014-06-25 14:54:59    阅读次数:247
javascript判断设备类型-手机(mobile)、安卓(android)、电脑(pc)、其他(ipad/iPod/Windows)等
使用device.js检测设备并实现不同设备展示不同网页html代码: 引入device.js(function() { var previousDevice, _addClass, _doc_element, _find, _handleOrientation, _hasClass...
分类:移动开发   时间:2014-06-25 14:07:19    阅读次数:275
剑指offer (30) 最小的K个数
题目:输入n个整数,找出其中最小的K个数方法一:直接std::sort,T(n) = O(nlgn)方法二:直接std::nth_element T(n) = O(n) 但是修改了原数组void MinKth(std::vector& num, int kth, std::vector& resul...
分类:其他好文   时间:2014-06-25 12:35:07    阅读次数:216
Some useful methods about linkedList.
/** * Method 1: Delete the input element x  * and meanwhile keep the length of array after deleted n * @param a  the array * @param n  the length of array after deleted. * @param x  the element t...
分类:其他好文   时间:2014-06-25 08:27:27    阅读次数:171
LeetCode: Best Time to Buy and Sell Stock II [122]
【题目】 Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times). H...
分类:其他好文   时间:2014-06-24 19:40:53    阅读次数:240
LeetCode——Single Number II
Given an array of integers, every element appears three times except for one. Find that single one. Note: Your algorithm should have a linear runtime complexity. Could you implement it without u...
分类:其他好文   时间:2014-06-24 15:52:58    阅读次数:222
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!