瀏覽人數

            カウンター

2013年2月25日 星期一

查詢年份下拉


public List<int> xxx{ get; set; }

for (int i = ViewModel.abc.Select(x => x.Nav_Date.Year).Max(); i >= ViewModel.abc.Select(x => x.Nav_Date.Year).Min(); i--)
{
   ViewModel.xxx.Add(i);
}

Jquery Clear Form Elements


function clear_form_elements(ele) {

        $(ele).find(':input').each(function() {
            switch(this.type) {
                case 'password':
                case 'select-multiple':
                case 'select-one':
                case 'text':
                case 'textarea':
                    $(this).val('');
                    break;
                case 'checkbox':
                //case 'radio':
                    this.checked = false;
            }
        });

$(".Rbutton.reset").click(function() {
            clear_form_elements($("#myfrm"));
});

**Html

特殊符號
&rsaquo; >
&nbsp;  空白
&deg;   度數

Jquery AutoComplete


    $("#Fund_Name_Search").autocomplete({
        source:"<%=Url.Action("Action", "Controller") %>", 
        select: function(event, ui) {
           // Do something with  "ui.item.Id" or "ui.item.Name" or any of the other properties you selected to return from the action
           $('#Fund_Id').val(ui.item.value.split('-')[0]);
        },
        minChars: 1,
        max: 0,
        delay: 500,
        width: 160,
        selectFirst: false
    });

本機Cookie存放位置


**本機Cookie存放位置

IE Cookie存放位置
C:\Documents and Settings\User\Local Settings\Temporary Internet Files

Google Chrome Cookie存放位置
C:\Documents and Settings\User\Local Settings\Application Data\Google\Chrome\User Data\Default

大小寫轉換的秘訣


<link href="/Content/Frontend/include/css/Print-S.css" rel="stylesheet" type="text/css" id="WordCss" />    

case "FontS":
$(this).css({ "cursor": "text" })
$("#ArticleSharingBarTable a[data='FontL']").css({ "cursor": "pointer" })
$("#WordCss").attr("href", $("#WordCss").attr("href").replace("-B", "-S"));
$("#smallImage").attr("src", $("#smallImage").attr("src").replace("small02.gif", "small.gif"));
$("#bigImage").attr("src", $("#bigImage").attr("src").replace("big.gif", "big02.gif")); 
break;

case "FontL":
$(this).css({ "cursor": "text" })
$("#ArticleSharingBarTable a[data='FontS']").css({ "cursor": "pointer" })
$("#WordCss").attr("href", $("#WordCss").attr("href").replace("-S", "-B"));
$("#smallImage").attr("src", $("#smallImage").attr("src").replace("small.gif", "small02.gif"));
$("#bigImage").attr("src", $("#bigImage").attr("src").replace("big02.gif", "big.gif")); 
break; 

Javascript 瀏覽視窗

Javascript 所能做到的如下

winid=windows.open( " URL " , " 視窗名稱 " , " 視窗外觀之設定 "); 
注意: " 視窗外觀設定 " 參數中的『,』之後不可以含有空白字元

toolbar=yes / no 瀏覽視窗是否顯示『工具列』
fullscreen=yes / no 全螢幕開啟
location=yes / no 瀏覽視窗是否顯示『位址欄位』 
directories=yes / no 瀏覽視窗是否顯示『目錄列』 
status=yes / no 瀏覽視窗是否顯示『狀態列』 
menubar=yes / no 瀏覽視窗是否顯示『功能表』 
scrollbars=yes / no 瀏覽視窗是否顯示『捲動軸』 
resizable=yes / no 瀏覽視窗是否『可以調整大小』 
width=點數 瀏覽視窗的『寬度』 
height=點數 瀏覽視窗的『高度』 

例:
 <SCRIPT Language="JavaScript">
function inputData(targetURL,winW,winH){
    screenW=screen.width/2;
    screenH=screen.height/2;
    winL=screenW-(winW/2);
    winT=screenH-(winH/2); 
    window.open(targetURL,"","toolbar=yes,resizable=yes,scrollbars=yes,width="+winW+",height="+winH+",left=screen.width/2,top="+winT);
}
</SCRIPT>

以上資料引用於:http://tw.myblog.yahoo.com/davidbulll/article?mid=73&prev=79&next=32


toolbar=yes / nofullscreen=yes / no
瀏覽視窗是否顯示『工具列』
全螢幕開啟
location=yes / no瀏覽視窗是否顯示『位址欄位』
directories=yes / no瀏覽視窗是否顯示『目錄列』
status=yes / no瀏覽視窗是否顯示『狀態列』
menubar=yes / no瀏覽視窗是否顯示『功能表』
scrollbars=yes / no瀏覽視窗是否顯示『捲動軸』
resizable=yes / no瀏覽視窗是否『可以調整大小』
width=點數瀏覽視窗的『寬度』
height=點數瀏覽視窗的『高度』

//開啟至中函數
 <SCRIPT Language="JavaScript">
function inputData(targetURL,winW,winH){
    screenW=screen.width/2;
    screenH=screen.height/2;
    winL=screenW-(winW/2);
    winT=screenH-(winH/2);
    window.open(targetURL,"","toolbar=yes,resizable=yes,scrollbars=yes,width="+winW+",height="+winH+",left=screen.width/2,top="+winT);
}
</SCRIPT>