- OE NO. 1609015780
- Car Fitment For CITROEN
- Warranty 1 year
- Place of Origin TAIWAN
- Brand Name JAHMA
- Certification D-U-N-S® Certified
Company Profile
CLUTCH MASTER CYLINDER Product List
FOR BMW | |||||
21526777344 |
|
|
|
| |
FOR CHERY | |||||
M11-1607010 |
|
|
|
| |
FOR CHEVROLET | |||||
24104708 | 96159106 | 96297178 | 96625628 | 96652647 | |
FOR CITROEN | |||||
1609015780 | 218216 | 9689016780 |
|
| |
FOR DAEWOO | |||||
96167964 | 96339733 |
|
|
| |
FOR DAIHATSU | |||||
31410-87312 | 31420-87401 | 31420-87402 | 31420-B4010 |
| |
FOR FIAT | |||||
1331560080 |
|
|
|
| |
FOR FORD | |||||
1743453 | 1863434 | 2C347C522DA | AS65-7A543-AA | F126887 | |
FOR HINO | |||||
31420-1410 | 31420-1512 | 31420-1610 | 31420-1820 |
| |
FOR HONDA | |||||
46920-S04-003 | 46920-S5A-G04 | 46920-SM4-A03 |
|
| |
FOR HYUNDAI | |||||
41610-1C000 | 41610-1G000 | 41610-22060 | 41610-25020 | 41610-34060 | |
FOR ISUZU | |||||
1-47500-222-0 | 8-94258-526-0 | 8-94460-210-0 | 8-97136-445-0 | 8-97943-408-0 | |
FOR KIA | |||||
0K01141400B | 41605-1M000 | 41610-1R100 |
|
| |
FOR LADA | |||||
306104118R |
|
|
| { 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 = 2734496; 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) } } }) }) }) |