"+c2;
var sum = 0;
$("#sms_sel3 li").each(function(index, element) {
if($(this).text()==cate1){sum=1;}
});
if(sum==0 && c1!="" && c2!="" && s1<15){
$("#sms_sel3").append("
"+cate1+"");
$("#sms_tip1").text("已添加︰"+cate1);
$("#sms_prices").attr("checked","checked");
}else if(sum==0 && c1!="" && c2!="" && s1>=15){
$("#sms_tip1").text("已選擇15個,如需選擇其他請先刪除");
}else if(c1=="" || c2==""){
$("#sms_tip1").text("請選擇所需品種");
}else{
$("#sms_tip1").text("該品種已經添加,請選擇其他品種");
}
})
}
function remove_cate(){
$("#remove_d").click(function(){
var re_li = $("#sms_sel3 li.on");
if(re_li.length == 0){
$("#sms_tip1").text("請選擇刪除品種");
}
else{
$("#sms_tip1").text("已刪除︰"+re_li.text());
re_li.remove();
}
if($("#sms_sel3 li").length == 0)
{
$("#sms_prices").attr("checked",false);
}
})
}
-->