親子日記APP
|
免費申請
|
登入
mini box 迷你盒子
這裡是工程師的筆記資料.
部落格
相簿
APP日記
書籤
標籤:
javascript
的相關文章
瀏覽方式:
摘要列表
|
標題列表
|
全站 《javascript》 相關
如何偵測網頁中 DOM 被修改
2017
02
21
23:05
因客戶瀏覽自己網站時,網頁內老是被他瀏覽器某個 Plugin 插入一些 HTML Tag
加上一段偵測語法,隨時監測網頁內語法有無被改變(被偷加什麼語法)
<script>
$(function() {
$("html").bind("DOMSubtreeModified", function() {
&...
繼續閱讀»
分類:
javascript
/
留言(0)
note: Facebook App 判斷有無加入粉絲團
2014
05
08
22:01
之前的寫法一直 OK FB.api('/me/likes/粉絲團編號', function (response) { if (response.data.length == 0) { console.log('還沒加入粉絲團已經加入了'); } else { console.log('已經加入了'); } }); 或是 FB.api('/me/likes/粉絲團編號', function (response) {...
繼續閱讀»
分類:
web開發
/
留言(1)
jquery .submit() 無法送出表單??
2012
10
19
09:26
在 IE Tester、KKMan 中 無法執行 .submit() 的狀況
網頁像這樣:
<form name="form1" id="form1" action="xxx.php" method="POST"> <input type=text name=a1 id=a1 value=""> //以下幾種按鈕的寫法...
繼續閱讀»
分類:
jquery
/
留言(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)
note: Javascript 繪圖、統計圖表相關
2009
11
23
21:49
jsDraw2D : 2D Graphics Library for JavaScripthttp://jsdraw2d.jsfiction.com/純 Javascript 的繪圖函數 (不須 SVG or VML, ps: IE到8.x都不支援SVG)比較特別的是提供有 Bezier Curve 的繪製功能
線上的 Demo: Draw "Bezier Curve" and "Curve through points" Draw Line, Polyline and Polygon Draw Circle, Ellipse, Arc and Rectangle jQuery Google Char...
繼續閱讀»
分類:
web開發
/
留言(0)