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

【JavaScript】載入時亂碼,處理方式

環境ASP.NET

JS 是很久以前做的,重覆使用的時候,alert跳出來時居然是亂碼

在script 裡面 加入    charset="Big5"  就搞定了


<   Xxxxscript charset="Big5" src=".XXXXX.JS" xxxx="text/javascript"   >

預設charset UTF-8

參考網址:http://caterpillar.onlyfun.net/Gossip/Encoding/JavaScript.html