Time of Update: 2014-05-19
標籤:style blog class code c ext 1、css樣式 1 .fpage{text-align:center;clear:both;padding-top:10px;} 2 .fpage
Time of Update: 2014-05-19
標籤:blog class code c java tar 本篇部落格是仿照書中執行個體,實現GridView和DetailsView結合無重新整理的資料編輯效果,頁面效果:當點擊GridView1的行或換頁時,都會引發DetailsView1的資料繫結顯示至頁面,同時當使用DetailsVie
Time of Update: 2014-05-19
標籤:style c tar ext a html h1 - h6 並告訴搜尋引擎 這裡是標題p 用於本文段落多img 圖片 替換元素 自閉合標籤<img src="" title="" />自閉合標籤:hr/ br/ area/ img/
Time of Update: 2014-05-19
標籤:class code c http a get parameter 屬性賦值例如要檢索使用者表中狀態為 1 (status=1) 並且電子包含 163 的使用者,當提交表單時(注意表單是 GET 方式提交),形成的 URL
Time of Update: 2014-05-19
標籤:style blog class code c java 折騰了一下,嘗試用Linux,部署mvc3。 分別用過 centos 和 ubuntu ,用ubuntu是比較容易部署的。 操作步驟如下:一、終端分別如下操作sudo su ->輸入密碼apt-get
Time of Update: 2014-05-19
標籤:style blog class code c java 簡單搭建xfire開源軟體的webservice開發及其步驟: 1、建立好一個web工程,引入xfire下的jar包,注意lib下的和xfire-all.jar 2、定義介面; Java代碼
Time of Update: 2014-05-19
標籤:style blog code c tar http 使用TFHpple解析html https://github.com/topfunky/hpple 前期準備工作 引入靜態庫檔案 添加庫檔案的 header
Time of Update: 2014-05-19
標籤:style blog class code c java 首先感謝熔岩的文章:http://lavasoft.blog.51cto.com/62575/2279881.Eclipse安裝上tomcat外掛程式,http://www.eclipsetotale.com/tomcatPlugi
Time of Update: 2014-05-19
標籤:style c color a get cti function displayHideUI(){ var ui
Time of Update: 2014-05-19
標籤:style blog class code c java 我們在開發中,經常會遇到拼接字串的時候,但是拼接後字串會多出一個無用的字元,例如逗號(,),而在js中並沒有像C#一樣的TrimEnd()方法,所以我們只能通過截取或者Regex等方式去去掉最後一個字元,我這的例子是去掉最後一個逗號
Time of Update: 2014-05-19
標籤:style c ext color a width 方法一:<div style="width:300px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;"> 任意長度的字串 &
Time of Update: 2014-05-19
下面例子為用canvas標籤畫多條直線<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head&
Time of Update: 2014-05-19
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>Insert title here</title><script type="text/javascript">/* *1.js 中不存在函數的重載 2.js函數定義時候的形參個數,和執行時候時,傳遞的實參的個數可以不一樣。
Time of Update: 2014-05-19
<script language="javascript"> if(!IsPC()){window.location.href="/m/"; //要跳轉的地址,也可以跳轉到 window.location.href="http://m.xxx.com/";}function IsPC(){var userAgentInfo = navigator.userAgent; var
Time of Update: 2014-05-19
最近項目遇到了問題,有個asp.net web程式只能在IE7 運行,現在xp都淘汰了,大家都用IE8-IE11,因此這個web app也需要升級 適應所有IE版本。照成IE版本不相容的問題主要來致document.createElement方法的調用,如:function addStyleNo(value, cannotDel) { if (!value) { value =
Time of Update: 2014-05-19
在UEditor一些版本中,如果粘貼Excell中的內容到編輯器,會粘貼不進去,開啟控制台發現JS報錯了。在ueditor.all.js:3048行報如下錯誤:Uncaught TypeMismatchError: Failed to execute 'removeAttributeNode' on 'Element': The node provided is
Time of Update: 2014-05-19
Time of Update: 2014-05-19
作者 : 卿篤軍一、括弧對齊:指和C/C++裡面一樣,上下括弧對齊~~~第一步:Project->preferences->Java->Code Style->Formatter第二步:點擊右邊的New在profile name 裡面隨便填寫一個名字,點擊ok選擇標籤頁Braces 把所有的Same line 統統(除了最後一個Array initializer)改成Next line儲存即可二、顯示行號:直接右擊編輯框你想顯示行號的位置,勾選”顯示行號“
Time of Update: 2014-05-19
php 匯出CSV抽象類別,根據總記錄數與每批次記錄數,計算總批次,迴圈匯出。避免記憶體不足的問題。ExportCSV.class.php<?php/** php Export CSV abstract class,根據總記錄數與每批次記錄數,計算總批次,迴圈匯出。* Date: 2014-05-16* Author: fdipzone* Ver: 1.0** Func:* public setPageSize 設定每批次匯出的記錄條數*
Time of Update: 2014-05-19
好題,字串,線性時間。我覺得第一次拿到這個題的人應該不會知道該怎麼做吧,要麼就是我太弱了。。先搞清楚這個題要求的是什麼。從一個長字串中找一個字串,這個字串中的字元完全包含了另一個給定目標串中的字元,且這個字串的長度要求最小。還有一個非常重要的簡化,題幹指明了要求這種最短字串只有一個,這個限制其實暗示了這道題的整體思路,只要找到一個長串,然後縮減到不能縮減即可。從題目的要求出發可以發現,這道題對於字串中字元的順序是沒有要求的,因此可以很自然的想到用hash表來儲存目標串中的每個字元的個數,然後在源