親子日記APP
|
免費申請
|
登入
mini box 迷你盒子
這裡是工程師的筆記資料.
部落格
相簿
APP日記
書籤
目前分類:「
javascript
」的相關文章
瀏覽方式:
摘要列表
|
標題列表
如何偵測網頁中 DOM 被修改
2017
02
21
23:05
因客戶瀏覽自己網站時,網頁內老是被他瀏覽器某個 Plugin 插入一些 HTML Tag
加上一段偵測語法,隨時監測網頁內語法有無被改變(被偷加什麼語法)
<script>
$(function() {
$("html").bind("DOMSubtreeModified", function() {
&...
繼續閱讀»
分類:
javascript
/
留言(0)
CKeditor / FCKeditor Plugins
2012
07
09
14:25
CKeditor
Drag and Drop uploads in CKEditor
http://alfonsoml.blogspot.tw/2012/06/drag-and-drop-uploads-in-ckeditor.html
這個不錯用,拖拉圖片到 CKeditor 編輯區就會自動上傳...
License 付費軟體
Google Maps plugin with lines and...
繼續閱讀»
分類:
javascript
/
留言(0)
jQuery 2.0 不再支持 IE 6/7/8
2012
07
07
11:14
jQuery 1.9、2.0 將在 2013年 發佈 兩版本的 API 會是一樣的,只是 1.9 會支援舊版 IE 1.9 持續支援 IE 6/7/8,而且會持續維護這個版本,沒有明確的維護終止時間 舊 IE 活多久 就會維護 1.9多久,原則上是微軟停止 Win XP 支援後吧 2.0 將不再支援IE 6/7/8 放棄支援舊 IE 應該可以讓 jQuery 效能較高、減少程式碼大小 http://blog.jquery.com/2012/07/01/jquery-1-9-and-2-0-tldr-edition/ ▼附圖:各版本瀏覽器,2012-07 的市佔率(全球) 來源:http://gs.statcounter.com/#browser_version-ww-m...
繼續閱讀»
分類:
javascript
/
留言(0)
jscalendar 問題
2010
08
30
15:28
jacalendar 在 jquery ui 的 dialog 顯示不正常問題;
改相關的 theme檔案 如 calendar-win2k-1.css .calendar { position: relative; display: none; border-top: 2px solid #fff; border-right: 2px solid #000; border-bottom: 2px solid #000; border-left: 2px solid #fff; font-size: 11px; color: #000; cursor: default; background: #d4d0c8; ...
繼續閱讀»
分類:
javascript
/
留言(0)
note: javascript
2009
03
03
21:26
取亂數
取 min_num ~ max_num 之間的亂數:
var n = Math.floor(Math.random() * (max_num - min_num + 1)) + min_num;
---
對select 操作
方法一
var oOption = document.createElement('OPTION');[BRB...
繼續閱讀»
分類:
javascript
/
留言(0)