2011-12-01から1ヶ月間の記事一覧

event handler

js

javascript: onclick onload/body onload/window.onload change blur/onBlur focusoutJQuery: ・blur&focus →A, AREA, BUTTON, INPUT, LABEL, SELECT, TEXTAREAだけ使えるchange select submit

Mysql − エラー

mysql BLOB/TEXT column 'options' can't have a default value 解決できず、謎でした。。。

word-wrap&white-space

css

word-wrap→ 自動改行 white-space→ ソースコード折り返し

JQuery−ガントチャート

・jquery.gantt定義: $("#gantt01").gantt({ 'type' : 'month', //'data','week' 'range' : 30, 'tasks' : [] }); task追加: $('#gantt01').addTask({ 'titles' : '' + iss1[i].id, 'color' : "#000000", 'text' : 'start_date' : 'end_date' : });

WampServer

・参考サイト http://www.open-qhm.net/index.php?MyWebServer#u1e92c78・fengofficeインストール http://otaku2dot0.ti-da.net/e2690452.html

jQuery−HTMLの挿入

最後に追加 $("指定した要素").append("追加するHTML")最初に追加 $("指定した要素").prepend("追加するHTML")後ろに追加 $("指定した要素").after("追加するHTML")前に追加 $("指定した要素").before("追加するHTML")