select 移除某一 option 的 javascript 公司用的代码是var ddlPrimaryResource = document.getElementById(ddlPrimaryResourceID);ddlPrimaryResource.options[ddlPrimaryR.....
分类:
其他好文 时间:
2014-06-29 06:36:13
阅读次数:
196
1.首先在命令行输入mysql,看一下本地计算机上是否有mysql。 2.卸载mysql服务: 首先查看安装的rpm的包:rpm –qa |grep mysql 对之前的服务进行删除。rpm –e mysql –server yum –y remove mysql-lib-5.1.52*。 3.下载...
分类:
数据库 时间:
2014-06-28 18:56:02
阅读次数:
628
一、Oracle1、SQL-- order bySELECT * FROM (SELECT ORACLEPAGESQL1.*, ROWNUM RN FROM (SELECT * FROM (SELECT IDX, NAME, CH_NAME FR...
分类:
数据库 时间:
2014-06-28 16:54:16
阅读次数:
282
Given a sorted linked list, delete all duplicates such that each element appear only once.For example, Given 1->1->2, return 1->2. Given 1->1->2->3->3...
分类:
其他好文 时间:
2014-06-21 07:30:11
阅读次数:
157
Given an array and a value, remove all instances of that value in place and return the new length.The order of elements can be changed. It doesn't mat...
分类:
其他好文 时间:
2014-06-21 07:17:47
阅读次数:
210
How to remove a network bridge in Windows Server 2008 R2症状:删除网桥的时候,按理说应该在“网络连接”中选择要被删除的网桥,右键点击,然后选择“删除”。但是实际操作中发现网桥很难删掉。有时候会报告“没有权限”错误,有时候报告“一个未知错误”,有...
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.Do not allocate extra space for...
分类:
其他好文 时间:
2014-06-20 21:48:33
阅读次数:
254
这是一个Oracle的列转行函数:LISTAGG()先看示例代码:with temp as( select 'China' nation ,'Guangzhou' city from dual union all select 'China' nation ,'Shanghai' city fr.....
分类:
数据库 时间:
2014-06-20 19:13:41
阅读次数:
224
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:Integers in each row are sorted fr...
分类:
其他好文 时间:
2014-06-20 15:29:46
阅读次数:
233
1 寄存器的分类
通用寄存器:
ax,bx,cx,dx,(ah,al,bh,bl,ch,cl,dh,dl);
sp,bp,si,di
指令寄存器:
ip
标志寄存器:
FR
段寄存器:
cs,ds,ss,es
2 ax,bx,cx,dx
这四个寄存器存放一般数据,你可以在里面存放任何数据,但是其用途会有不同。
AX (Accumulator):累加寄存器,也称之为累...
分类:
其他好文 时间:
2014-06-18 06:04:25
阅读次数:
300