jqueryチェックボックスを自動的に埋め込むチェックボックスをtrueにします
2498 ワード
jqueryは自動的にチェックボックスを埋めます.すなわち、チェックボックスを(true)し、ajax方式でチェックリストを取得し、リスト内のオプションを打ちます.
selectが変更され、次のような関数makemoduleSelected()がトリガーされます.
この関数はajax方式でindexStatisticsAction_getSelect.jspは要求を出して、1つの文字列を返して、文字列を文字列の配列に分けて、それからラベルの下のラベルを遍歴して、関連するラベルに出会って、フック(true)します.indexStatisticsAction_getSelect.jspの関連コードは以下の通りです.
selectが変更され、次のような関数makemoduleSelected()がトリガーされます.
// , (onchange)。
function makemoduleSelected(){
clearAll('property');
var modtitlecode = $("#makemodule").val();
$.ajax({
url : 'indexStatisticsAction_getSelect.jsp',
data: { page:'clientindexStatistics.jsp',method:'get_subname_en',modtitlecode:modtitlecode},
success : function(result){
// result
var results = result.split(",");
//document.getElementById(results[i]).checked = true;
$(".indexStatistics").each(function(){
$(this).find("input").each(function(){
var tempVal = $(this).val();
for(var i=0; iif(tempVal == results[i]) $(this).attr("checked", true);
}
});
});
}
});
}
この関数はajax方式でindexStatisticsAction_getSelect.jspは要求を出して、1つの文字列を返して、文字列を文字列の配列に分けて、それからラベルの下のラベルを遍歴して、関連するラベルに出会って、フック(true)します.indexStatisticsAction_getSelect.jspの関連コードは以下の通りです.
//
if(method.equals("get_subname_en")){
String modtitlecode = request.getParameter("modtitlecode");
if(modtitlecode.equals("-------")) return;
String sql = sql2.replace("?modtitlecode?",modtitlecode);
sql = sql.replace("?userId?",userId);
System.out.println(sql);
StringBuffer subnames = new StringBuffer();
Db db = new Db();
try {
db.prepareQuery();
ResultSet rs = db.executeQuery(sql);
while (rs!=null && rs.next()) {
subnames.append(rs.getString("subname_en"));
subnames.append(",");
}
rs.close();
} catch (Exception e) {
e.printStackTrace();
} finally {
db.endQuery();
}
PrintWriter pout = response.getWriter();
pout.write(subnames.toString().substring(0,subnames.length()-1));
pout.flush();
pout.close();
}