- Dec 08 Tue 2015 16:16
PHP權限管理表 資訊系統使用者權限管理表
- Dec 03 Thu 2015 23:28
PostgreSQL 多階層用法
- Nov 10 Tue 2015 14:13
CSS 解決IE6 PNG圖檔背景問題 /半透明/不透明
*{
behavior: url("iepngfix.htc"); /*解決IE6 PNG圖檔背景問題*/
-webkit-user-select: none;
-webkit-text-size-adjust: none;
}*{
-webkit-user-select: none;
-webkit-text-size-adjust: none;
}
- Aug 25 Tue 2015 19:46
jQuery 即時單位轉換- 偵測鍵盤改變 (input輸入cm 轉成mm)
jQuery 即時單位轉換- 偵測鍵盤改變 (input輸入cm 轉成mm)
<script>
//jwu 2015/08/25
$(function(){
$("input#label_width").on('keyup blur change', function() {//即時換算- 偵測滑鼠
var num=parseFloat($("#label_width").val(),10);//轉成數字+可小數點(10進位)
//if(Math.floor(num) == num && $.isNumeric(num)){
if( $.isNumeric(num)){
$( "#width1" ).text( num * 10 );//cm換算成mm
}else{
- Aug 17 Mon 2015 11:12
jquery 控制某個元素 ,如 Li 中第1個 - dom element
<ul id="menu">
<li class="nav">
<a href="/13/7">
<h2>A</h2>
</a>
</li>
<li class="nav">
<a href="/14/7">
<h2>B</h2>
</a>
</li>
- Aug 13 Thu 2015 23:51
這些程式專有名詞如何發音?? 來吧~試著念看看
Null
中文意思:空值
中文發音:挪兒 ~~ (聽起來很像是NO的發音,但是是長音喔!!)
千萬不要念成『怒』了0.0
script
中文意思:程式腳本
中文發音:斯ㄎㄨ一ㄟˊ ㄆ˙
斯奎ㄆ
Hadoop
- Aug 13 Thu 2015 06:21
codeigniter - sqlite 大量插入數據
\CodeIgniter_3.0.0\application\config\database.php
//使用sqlite
$db['default'] = array(
'dsn' => '',
'hostname' => 'sqlite:'.APPPATH.'db/ex.sqlite',
'username' => 'root',
'password' => '',
'database' => '',
'dbdriver' => 'pdo',
- Aug 12 Wed 2015 19:11
[一看就懂] codeigniter 3 分頁要如何用? 分頁(Pagination) 類別教學
不管是官網還是網路上的分頁教學,你都無法使用嗎??
OK,讓我們一步一步來吧!
為了學習起見,這邊我略過model跟view層,直接在controller內做完。
CodeIgniter_3.0.0\application\controllers\Welcome.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Welcome extends CI_Controller {
public function index2() {
$fitle_ary=array('status' => '1');
$query = $this->db->get_where('news', $fitle_ary );//
$num_rows=$query->num_rows();//計算總數
- Aug 11 Tue 2015 19:31
PHP 列出上層所有陣列
$category= array(
array('category_id'=>'1','parent_id'=>'0','name'=>'A'),
array('category_id'=>'2','parent_id'=>'1','name'=>'A1'),
array('category_id'=>'3','parent_id'=>'1','name'=>'A2'),
array('category_id'=>'4','parent_id'=>'3','name'=>'A21'),
array('category_id'=>'5','parent_id'=>'3','name'=>'A22'),
array('category_id'=>'6','parent_id'=>'0','name'=>'B'),
array('category_id'=>'7','parent_id'=>'6','name'=>'B1'),
array('category_id'=>'8','parent_id'=>'0','name'=>'C'),
array('category_id'=>'9','parent_id'=>'6','name'=>'B2'),
);
- Aug 05 Wed 2015 19:56
[jQuery] 閉包的運用 -以cookie存取為例
[jQuery] 閉包的運用 -以cookie存取為例
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="js/jquery.cookie.js"></script>
<script type="text/javascript">
//2015/08/05 jwu註釋及視例
//This is not production quality, its just demo code.
var cookieList = function(cookieName) {
//When the cookie is saved the items will be a comma seperated string
//So we will split the cookie by comma to get the original array
var cookie = $.cookie(cookieName);
//Load the items or a new array if null.