[JQuery]checkbox 是否被選取 或checked設定 6月 14, 2011 set $("#your-checkbox-id").attr('checked') $("#your-checkbox-id").removeAttr('checked') 判斷 if ( $("#your-checkbox-id").attr('checked') ) { something(); } 閱讀完整內容
[ASP] Use HashTable In asp 6月 01, 2011 用CreateObject("Scripting.Dictionary") 來產生 hashtable Set MyHash = CreateObject("Scripting.Dictionary") MyHash.Add "key", "Value" hashKeys = MyHash.keys for each k in MyHash.keys responsew.write( MyHash.Item(k)) next VBScript » Objects » Dictionary 閱讀完整內容