顯示具有 JQUERY 標籤的文章。 顯示所有文章
顯示具有 JQUERY 標籤的文章。 顯示所有文章

2016年9月6日 星期二

【Jquery】jQuery Upload File 元件

使用:jquery.fileupload-validate.js 卻錯訊息

錯誤訊息:Cannot call method 'push' of undefined
是因為少了:jquery.fileupload-process.js

把它加入就可以了,要放在 validate 之前引用

2014年10月16日 星期四

【Jquery】jquery.validate.js 取消驗證 Cancel 按鈕

驗證欄位工具

Jquery 外掛:

jquery.validate.js

button Control
屬性  新增一個:UseSubmitBehavior="True"

就可以了不用驗證

用徒在於:

送出、取消

取消 按鈕上使用

2014年10月7日 星期二

【JAVASCRIPT,JQUERY】依據不同的瀏覽器,取得 XMLHttpRequest 物件

// 依據不同的瀏覽器,取得 XMLHttpRequest 物件
function createAJAX() {

if (window.ActiveXObject) {
try{
//alert('msx');
return new ActiveXObject("Msxml2.XMLHTTP");
}catch(e){
//alert(e.description);
try {
//alert('micro');
return new ActiveXObject("Microsoft.XMLHTTP");
} catch (e2) {
//alert(e.description);
//alert('null0');
return null;
}
}
//alert('active');
} else if (window.XMLHttpRequest) {
//alert('xmlhttp');
return new XMLHttpRequest();
} else {
//alert('null');
return null;
}
}

2014年7月10日 星期四

【asp.net jquery json】解決出現 is not allowed by Access-Control-Allow-Origin

我的做法是:
asp.net 頁面上使用 jquery json 格式
到跨ip 回傳到 ashx 的頁面讀資料,
導致

Chrome 頁面上出現錯誤訊息

allow xxx 鬼的

只要 在ashx 那隻上面 加以下這樣就可以了

HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");

另外記得json 回傳的conten-type 要定義相符,不然資料會有問題

2014年6月11日 星期三

【Jquery】外掛元件 ( datatables ) 分頁 資料源:HTML JAJX JSON

JQUERY  外掛元件名稱:datatables

JAJX 及JSON  或直接 HTML TABLE 格式

功能:分頁、快速搜尋功能

網址:http://www.datatables.net/examples/data_sources/ajax.html


2013年5月8日 星期三

JQUERY Chosen 要DISABLE 掉的話設定


jQuery
$("#original_form_field").attr('disabled', true).trigger("liszt:updated");
Prototype
$("original_form_field").disabled = true;
$("original_form_field").fire("liszt:updated");

2012年8月21日 星期二

【方向】設計目標

.選擇什麼?  (Select What)
.如何選擇?  (How Select)
.怎麼操作?  (How Do)
.操作什麼?  (Do What)

2012年5月24日 星期四

【JQUERY】dropdownlist 抓 值 或 txt 或 item 裡面全部的value


dropdownlist 抓 值 或 txt 或 item 裡面全部的value

假設 DropDownList ID 為 DropDownList1 
 
取得 DropDownList 選中的文字
$('#DropDownList1 option:selected').text();
  
取得 DropDownList 選中的內容
$('#DropDownList1 option:selected').val();


xxx script type="text/javascript"xxxx
   function getSelect() {
      var selected = $('#DropDownList1 option:selected');
      alert(selected.val());
   }   
xxx /script xxx