码迷,mamicode.com
首页 >  
搜索关键字:text    ( 52583个结果
html5,加密元素
<form action=""> 账号:<input type="text" name="user"> 加密:<keygen name="mykey"> <input type="submit"></form> ...
分类:Web程序   时间:2016-10-06 19:30:57    阅读次数:182
MYSQL索引的深入学习
通常大型网站单日就可能会产生几十万甚至几百万的数据,对于没有索引的表,单表查询可能几十万数据就是瓶颈。 以我去年测试的数据作为一个简单示例,20多条数据源随机生成200万条数据,平均每条数据源都重复大概10万次,表结构比较简单,仅包含一个自增ID,一个char类型,一个text类型和一个int类型, ...
分类:数据库   时间:2016-10-06 19:28:42    阅读次数:183
js 移除事件
<html><head></head><body><input id="info" type="button" value="click me!" /><script type="text/javascript"> //addeventlistener()和removeeventlistener() ...
分类:Web程序   时间:2016-10-06 19:28:40    阅读次数:415
打地鼠
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> *{ text-align: center; } </style></head><body><script src=". ...
分类:其他好文   时间:2016-10-06 17:17:00    阅读次数:163
codeforces 723B:Text Document Analysis
Description Modern text editors usually show some information regarding the document being edited. For example, the number of words, the number of pag ...
分类:其他好文   时间:2016-10-06 16:52:40    阅读次数:156
内存分段 && 缓冲区
一、内存中的程序: 在进程被载入内存中时,基本上被分成许多小的节,以下是6个主要的节。 低地址 高地址 .text 节 .text节基本上相当于二进制可执行文件的.text部分,它包含了完成程序任务的机器指令。 该节标记为只读,如果发生写操作,会造成 segmentation fault。 在进程最 ...
分类:其他好文   时间:2016-10-06 15:06:31    阅读次数:177
Cheatsheet: 2016 09.01 ~ 09.30
Web Is JavaScript Single-Threaded? Quill 1.0 – Better Rich Text Editor for Web Apps Next Generation Server Compression With Brotli Debugging With Node... ...
分类:其他好文   时间:2016-10-06 14:43:29    阅读次数:138
linq,sqlmethods,like
LINQ to SQL will translate .NET methods in this manner: text.StartsWith(...) = LIKE ...% text.Contains(...) = LIKE %...% text.EndsWith(...) = LIKE %.. ...
分类:数据库   时间:2016-10-06 12:57:03    阅读次数:202
jQuery基础:获取元素内容
1、html():返回原始HTML文档、但是在IE中可能存在兼容性,具体如下 原理:使用innerHTML() 2、text(): 得到匹配元素集合中每个元素的合并文本,包括他们的后代 .text() 方法不能使用在 input 元素或scripts元素上,input 或 textarea 需要使用 ...
分类:Web程序   时间:2016-10-06 00:40:02    阅读次数:185
创建Ajax
<script type="text/javascript"> window.onload=function(){ function createXHR(str){ var xhr; if(str.length==0){ docuement.getElementById('box').innerHT ...
分类:Web程序   时间:2016-10-06 00:37:37    阅读次数:208
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!