0
這是我的原始代碼,用於在未輸入電話號碼時生成錯誤。它工作正常。生成錯誤消息
if ($("shipping_tel")) {
if ($("shipping_tel").value === "") {
ErrorMsg += " - Shipping telephone: Phone Number\n";
$("shipping_tel_label").className = 'hilight';
} else {
$("shipping_tel_label").className = 'lolight';
}
}
我需要改變某些事情像this..but它不工作
if $('ship_shipping').checked = 'TRUE' {
if ($("shipping_tel")) {
if ($("shipping_tel").value === "") {
ErrorMsg += " - Shipping telephone: Phone Number\n";
$("shipping_tel_label").className = 'hilight';
} else {
$("shipping_tel_label").className = 'lolight';
}
}
}