(溫故知新) Hibernate 簡易練習(查找資料)
原始碼下載: https://goo.gl/xu4KXV https://goo.gl/1S0qJt
【開發環境】
Tomcat 7
MySQL
【開發工具】
Intellij IDEA 14
【使用FrameWork】
SpringMVC
jQuery
【主要畫面】
(溫故知新) Hibernate 簡易練習(查找資料)
原始碼下載: https://goo.gl/xu4KXV https://goo.gl/1S0qJt
【開發環境】
Tomcat 7
MySQL
【開發工具】
Intellij IDEA 14
【使用FrameWork】
SpringMVC
jQuery
【主要畫面】
(溫故知新) SpringMVC 簡易練習(查找資料) easy 1
原始碼下載:https://goo.gl/7fEXBV
【開發環境】
Tomcat 7
MySQL
【開發工具】
Intellij IDEA 14
function test2(){
$("tr").each(function(i){
//取得符合條件checkbox的value
//var checkboxValue = $(this).find("input[type='checkbox']").attr('checked');
var checkboxValue = $(this).find("td input[type='checkbox']").attr('checked');
if(checkboxValue==true)
//取得在該tr中符合條件的value
var tmp = $(this).find("select option:selected").attr('value');
//console.log(checkboxValue);
if(tmp!=null){
console.log(tmp);
}
});
}