您的位置:首页 > 其它

失去焦点事件 blur()

2017-08-11 18:09 176 查看
function RestrictionWords() {
$(".blur").blur(function () {
var consignee_country_id = $("[name=consignee_country_id] option:selected").val();
var shipping_method = $("[name=shipping_method] option:selected").val();
var consignee_first_name = $("[name=consignee_first_name]").val();
var consignee_last_name = $("[name=consignee_last_name]").val();
var consignee_company = $("[name=consignee_company]").val();
var consignee_address1 = $("[name=consignee_address1]").val();
var consignee_address2 = $("[name=consignee_address2]").val();
if (((/FBA/i).test(consignee_first_name)) ||
((/Amazon/i).test(consignee_first_name)) ||
((/FBA/i).test(consignee_last_name)) ||
((/Amazon/i).test(consignee_last_name)) ||
((/FBA/i).test(consignee_company)) ||
((/Amazon/i).test(consignee_company)) ||
((/FBA/i).test(consignee_address1)) ||
((/Amazon/i).test(consignee_address1)) ||
((/FBA/i).test(consignee_address2)) ||
((/Amazon/i).test(consignee_address2))) {
if ((consignee_country_id == 115 && shipping_method == 'SFCQMITR') || (consignee_country_id == 89 && shipping_method == 'SFCQMDER')) {
$("#messageDialog").html('<p><{t}>100002294<{/t}><p>').dialog("open");
}
}
})
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: