var el = $('#SelectID'); // Select the relevant option, de-select any others el.val("Man").attr('selected', true).siblings('option').removeAttr('selected'); // jQM refresh el.selectmenu("refresh", true);
1.install Java 1.7.0 2.Install DB2 [Account] / [PWD] 3.Install Installation Manager 4.Install Websphere Liberty 5.Create Websphere Server >server create WLserver 6.Start Service : IBM Secure Shell Server for Windows 7.Install IDM WorkLight Server IBM DB2 Driver for JDBC C:\Program Files\IBM\SQLLIB\java\db2jcc4.jar 8.RUN Worklight Server Configuration Tool Create New Configuration console Settings [V] Install Worklight Console /worklightconsole JDBC C:\Program Files\IBM\SQLLIB\java\db2jcc4.jar Create a default user admin /[PWD] 9. RUN Websphere Server [WLserver] >server start WLserver 10. open http://localhost:9080/appcenterconsole/console.html appcenteradmin /admin
IE8 對於CSS3的支援沒有很好, 有些時候寫的CSS是無法在IE8上執行 這時候可以安裝 selectivizr.js 就可以改善這個問題 這是selectivizr.js專頁上的說明 selectivizr is a JavaScript utility that emulates CSS3 pseudo-classes and attribute selectors in Internet Explorer 6-8. Simply include the script in your pages and selectivizr will do the rest 詳細說明請見 http://selectivizr.com/
Dim petOwners = From pers In people Group Join pet In pets On pers Equals pet.Owner Into PetList = Group From pet In PetList.DefaultIfEmpty() Select pers.FirstName, pers.LastName, PetName = If(pet Is Nothing, String.Empty, pet.Name)