1、选择第一级子节点 通过> 或者children方法实现 $('#XtraTabPage8>.datagrid-ftable') $('#XtraTabPage8').children('.datagrid-ftable') 2、选择所有的子节点,即后代节点 通过空格实现 $('#XtraTabP ...
分类:
Web程序 时间:
2019-09-29 17:09:01
阅读次数:
104
当前栏目ID {$catid} 顶级栏目ID {$top_parentid} {$CATEGORYS[$top_parentid][catid]} 终极栏目ID <?php $a=explode(',', $CATEGORYS[$catid]['arrchildid']);$a=end($a);ec ...
分类:
Web程序 时间:
2019-09-29 09:57:20
阅读次数:
107
原生js的dom操作巩固前言:这玩意其实很简单,但是每次用的时候都有点含糊,故写个文章,每次忘得时候看一看原生dom操作1、创建dom元素:createElement(标签名)2、删除dom元素:removeChild(标签名)3、在什么元素后添加dom元素:元素.appendChild(标签名)4... ...
分类:
Web程序 时间:
2019-09-28 11:07:34
阅读次数:
138
# coding:utf-8 class Node(object): """""" def __init__(self, item): self.elem = item self,lchild = None self.rchild = None class Tree(object): """二叉樹" ...
分类:
其他好文 时间:
2019-09-27 01:28:20
阅读次数:
72
1. 子组件调用父组件的方法和数据 -- Input 装饰器 1. fatherComponent.html中 toChildStr -- 父组件中定义的数据 fatherMethod -- 父组件中的方法 fatherComponent -- 父组件本身, this指代父组件实例,通过 [fath ...
分类:
其他好文 时间:
2019-09-25 21:12:56
阅读次数:
121
因为电脑重装的原因,我打开eclipse打算启动tomcat的时候启动失败了 Server Tomcat v7.0 Server at localhost failed to start. 严重: A child container failed during start java.util.con ...
分类:
系统相关 时间:
2019-09-25 19:57:32
阅读次数:
248
众所周知,Java的类加载机制采用了双亲委派模型,导致在进行类加载的时候会有多个加载器,这种复杂的机制,有时候会导致‘Exception in thread main java.lang.NoClassDefFoundError’这个异常,虽然可能你认为相应的类和jar包就在某个类加载器中。下面的文 ...
分类:
编程语言 时间:
2019-09-25 10:31:53
阅读次数:
96
Description: A full binary tree is defined as a binary tree in which all nodes have either zero or two child nodes. Conversely, there is no node in a ...
分类:
其他好文 时间:
2019-09-24 15:50:07
阅读次数:
78
写在前面的话 在学习的索引的时候,有提到,当数据表数据达到 800W 的时候,索引的性能就开始逐步下降。对于一个公司而言,主要业务数据表达到 1000W 都很容易。同时这张表一般都是业务常用的表,操作还比较频繁。所以为了提升用户体验,需要采用另外的方式对数据库进行优化,那就是分库分表。而 MyCAT ...
分类:
数据库 时间:
2019-09-24 15:49:20
阅读次数:
105