0
的打印,我需要根據檢查的創建這些輸出:如何從選擇檢查
produttore + struttura = 60或produttore = 45或struttura = 56 從這裏開始的,如果它很容易
$(".rambo").change(function() {
var str = "";
$("input:checked").each(function() {
var valore = $(this).val();
switch(valore)
{
case "produttore": str += "produttore";
break;
case "struttura": str += "struttura";
break;
default:;
}
});
$("div").html(" <b>Multiple:</b> " + str);
})
.change();
這
<input type="checkbox" class="rambo" value='produttore' /> 45 euro
<input type="checkbox" class="rambo" value='struttura' /> 56 euro
謝謝你的建議
許多感謝.... – Simon 2012-03-03 16:27:08