CSS 在 IE 瀏覽器下失效
在網站開發時,總會發現 IE 瀏覽器跟別人不太一樣
最常出事就是 CSS,CSS 在 IE 瀏覽器下失效
提供幾個從 stackoverflow 找的方法能影響下面
Do not code CSS on the HTML file
這裡應該是指 CSS Code 有很多 HTML Code 不一樣,舉個最常出現的例子就是註解。
<style type ="text/css">
<!-- You need this in order to have CSS, it has -->
p...
2019年5月19日 星期日
JS 日期操作
JavaScipt 日期操作
宣告
var now = new Date();
var targetDate = new Date("2018/11/24");
// IE 要注意的地方,IE date 格式為 yyyy/mm/dd
var somedate = "2019-5-17";
var targetDate = new Date(somedate.replace("-","/"));
* 不照IE格式會顯示 NaN-NaN-NaN ().(更多參考資訊)
加減、指定數值
var mydate = new Date("2018/11/24");
mydate.setFullYear(mydate.getFullYear()+1);...
2019年5月3日 星期五
PHP 日期加減
PHP 日期加減
1. mktime()
$date1 = date ("Y-m-d H:i:s" , mktime(date('H'), date('i'), date('s'), date('m'), date('d')-1, date('Y')));
$date2 = date ("Y-m-d H:i:s" , mktime(date('H'), date('i'), date('s'), date('m'), date('d'), date('Y')));
2. strtotime()
$today = '2013-04-19';
echo date("Y-m-d", strtotime($today."+3...
PHP Function with Optional Parameters
PHP Function with Optional Parameters
有 2 種方法
1. 用 NULL arguments
function method($arg1 = null, $arg2 = null){
$arg1 = $arg1? $arg1: "default_value_for_arg1";
$arg2 = $arg2? $arg2: "default_value_for_arg2";
}
2. 傳 Array
function method($arr){
$arg1 = $arr['$arg1'] ? $arr['$arg1'] : "default_value_for_arg1";
...
Strict Standards: Only variables should be passed by reference in
升級 PHP 後
會遇到錯誤回報 Strict Standards: Only variables should be passed by reference in
$SQL->bindParam(':page', getenv('REQUEST_URI'));
看到這報錯後,我變更改成以下
$temp = getenv('REQUEST_URI');
$SQL->bindParam(':page', $tem...
MySQL 利用執行順序提高效率
MySQL 利用執行順序提高效率
因為公司的內部網站平常有點慢,後來又架了個在美國的 Server
原本的小問題就被放大,雖然優化網站的方式主要不是靠 SQL的改進
最普通的優化就是不要用 SELECT * ,理由顯而易見,資料越多搜尋越慢
依照這點,所以要讓搜尋的資料越少,就要利用明確的條件去限制搜尋
也就是利用 SQL 的執行順序
SQL 的執行順序如下 :
FROM
ON
JOIN
WHERE
GROUP BY
WITH CUBE 或 WITH ROLLUP
HAVING
SELECT
DISTINCT
ORDER BY
Top / limit
所以可以改進的就是 ON...
Popular Posts
-
lvalue 、rvalue 基本概念 左值 (lvalue) : 一個佔據某個特定記憶體的值。 右值 (rvalue) : 一個 expression 結束後就消失的值。 基本上這兩個定義包含了全部的值,非左即右,非右即左。 int var = 4; // v...
-
You try to hold me down so I became a soldier 你想要控制所以我成為了戰士 Built up all theses walls and now I'm climbing over 監牢般的城牆如今我已越過 Thos...
-
Ooh, don't we look good together? 我們看起來是不是很棒? There's a reason why they watch all night long 這就是為何他們整晚都看著我們的原因 Yeah, kn...
-
Job Company : Houzz Job : Back-End Software Engineer Source : Recruiter on LinkedIn Result : 止步二面 Summary 1. 英文程度不佳 :...
-
Don't lie, I know you've been thinking it 別說謊了,我知道你一直很渴望 And two times, you let it slip from your lips 兩次了,你那不想讓人聽見的低語 You...
-
報告在製作時,一定會遇到要字串轉數字 在 BCB 裡有方便的函式 常見的有 String str = "123" int x = StrToInt(str); float y = StrToFloat(str); 但有時候...
-
BCB 選擇路徑(資料夾) 工作關係要將各式各樣的資料彙整並輸出 各式各樣的資料都放在同一目錄下 所以在設計程式就必須設計可以給使用者選擇目錄 但BCB10似乎沒有這種元件 (其實有 DirectoryListBox 但我駕馭不了) 於是Google發現大家用的...
-
BCB TDateTime 時間操作及應用 在 BCB 裡有關時間的操作幾乎都是與 TDateTime 這個 Class 相關 若找不到相關資料可以用 BCB 的 HELP ( 游標移到要查詢的函式或Class 並按 F1 ) 介紹幾個個人有在用的函式 TDate...
-
Python Google API - Python 學習筆記 Google API - Python 學習筆記 - Upload post
-
warning: left shift count >= width of type 一般來說,就是 shift 的 bit 大於資料型態的 bit 數。但有時使用 unsigned long 仍然會出錯,因為 unsigned long 會依照系統的不同,有...