- OE NO. 47201-3D350
- Car Fitment For TOYOTA
- Warranty 1 year
- Place of Origin TAIWAN
- Brand Name JAHMA
- Certification D-U-N-S® Certified
Company Profile
BRAKE MASTER CYLINDER Product List
FOR BOSCH | ||||
986480826 |
|
|
|
|
FOR CHEVROLET | ||||
24510439 | 9054148 | 93742808 | 96418832 | MC39849 |
FOR DAIHATSU | ||||
47201-87312 | 47201-87401 | 47201-87709 |
|
|
FOR FORD | ||||
F0TZ2140A | F4TZ2140D |
|
|
|
FOR GM | ||||
93742399 |
|
|
|
|
FOR HINO | ||||
17020-2690 |
|
|
|
|
FOR HONDA | ||||
46100-S04-A03 46100-S5D-A51 | 46100-S84-A02 46100-SDA-A01 | 46100-SH3-A05 46100-SM4-G54 | 46100-SR3-013 | 47201-52330 |
FOR HYUNDAI | ||||
58510-02010 | 58510-1G000 | 58510-28100 | 59110-4B010 |
|
FOR ISUZU | ||||
8-94112-625-0 | 8-94313-438-2 | 8-94406-618-0 | 8-98006-941-0 |
|
FOR KIA | ||||
K15043400D | KK150-43-400 | OK2A1-49-400 |
|
|
FOR MAZDA | ||||
8977-43-400A | BNYR-43-40Z | GAY5-43-400 | UB39-43-400 | UM83-43-400 |
FOR MITSUBISHI | ||||
BM52514 | MB295340 | MB618717 | MC894211 | MN102441 |
FOR NISSAN | ||||
46010-01A00 | 46010-2M101 | 46010-53L20 | 46010-A05G0 | {
notification.classList.remove('show');
}, 3000);
}
function openFullscreen(image) {
const overlay = document.getElementById("fullscreen-overlay");
const fullscreenImage = document.getElementById("fullscreen-image");
fullscreenImage.src = image.src; // 将点击的图片源传递给全屏展示图片
overlay.style.display = "flex"; // 显示全屏容器
}
function closeFullscreen() {
const overlay = document.getElementById("fullscreen-overlay");
overlay.style.display = "none"; // 关闭全屏容器
}
document.addEventListener("DOMContentLoaded", function () {
// 打开弹窗函数
document.getElementById("send-inquiry").onclick = openPoterModal
document.getElementById("help-btn").onclick = openPoterModal
function openPoterModal() {
document.getElementById("poterOverlay").style.display = "block";
}
// 关闭弹窗函数
function closePoterModal() {
document.getElementById("poterOverlay").style.display = "none";
}
// 绑定关闭按钮点击事件
document.getElementById("poterCloseBtn").addEventListener("click", closePoterModal);
// 点击遮罩层外部区域关闭弹窗
document.getElementById("poterOverlay").addEventListener("click", function (e) {
if (e.target === this) {
closePoterModal();
}
});
let quantityInput = document.getElementById("quantity");
quantityInput.addEventListener("input", function () {
// 移除非数字字符
let newVal = this.value.replace(/[^0-9]/g, "");
this.value = newVal
$("#overlay-quantity").val(newVal)
});
let overlayQuantity = document.getElementById("overlay-quantity");
overlayQuantity.addEventListener("input", function () {
// 移除非数字字符
let newVal = this.value.replace(/[^0-9]/g, "");
this.value = newVal
$("#quantity").val(newVal)
});
$(".add-btn").click(function () {
let qty = parseInt($("#quantity").val())
console.log(qty);
if (qty) {
qty++
} else {
qty = 1
}
$("#quantity").val(qty)
$("#overlay-quantity").val(qty)
})
$(".subtract-btn").click(function () {
let qty = parseInt($("#quantity").val())
if (qty > 1) {
qty--
} else {
qty = 1
}
$("#quantity").val(qty)
$("#overlay-quantity").val(qty)
})
let productId = 2719874;
let supplierId = 154170;
$(".form-submit").click(function () {
let params = {
productId: productId,
supplierId: supplierId,
est_amount: $("#est_amount").val(),
est_quantity: $("#quantity").val(),
email: $("#email").val(),
phone: $("#phone").val(),
message: $("#message").val(),
}
// 遍历 params 对象,检查是否有空值
for (let [key, value] of Object.entries(params)) {
if (!value) { // 检查是否为空或为0直接退出函数
return
}
}
$.ajax({
url: "/api/ProductReserve",
data: params,
method: "POST",
success: function (res) {
if (res.statusCode == 200) {
productId = null
supplierId = null
$("#est_amount").val("")
$("#quantity").val(1)
$("#overlay-quantity").val(1)
$("#email").val("")
$("#phone").val("")
$("#message").val("")
closePoterModal()
showNotification('Successfully');
} else {
alert(res.message)
}
}
})
})
})
|