- OE NO. 45046-19435
- Car Fitment For TOYOTA
- Warranty 1 year
- Place of Origin TAIWAN
- Brand Name JAHMA
- Certification D-U-N-S® Certified
Company Profile
TIE ROD END Product List
FOR CHEVROLET | |||||
93741077 | 95218393 | 93740723 | 13286686 | 90921297 | |
FOR DAEWOO | |||||
48810-A85000 |
|
|
|
| |
FOR DAIHATSU | |||||
45046-87682 | 45047-87684 |
|
|
| |
FOR DODGE | |||||
ES187L | ES187R | ES800408 | ES-60L | ES-60R | |
FOR FORD | |||||
DG9Z3A130A | 7T4Z3A130A | 8L8Z3A130B | ES800305 |
| |
FOR GM | |||||
19256659 |
|
|
|
| |
FOR HINO | |||||
33076-1170 | 45420-1790 | 45430-1600 | 78250-1270 | S4550-E0430 | |
FOR HONDA | |||||
53540-SEL-T01 | 53560-SEL-T01 | 53560-SNA-A01 | 53540-SXS-A01 53540-TF0-003
|
| |
FOR HYUNDAI | |||||
56820-00500 | 56820-2B000 | 56820-4A600 | 56890-6A001 | 56820-28500 | |
FOR ISUZU | |||||
1-43150-113-2 | 1-43150-801-0 | 8-94103-223-2 | 8-97142-101-1 | 8-94419-609-2 | |
FOR JEEP | |||||
ES64L | ES64R | 5143555AA | 5143556AA |
| |
FOR KIA | |||||
26001806 | K710-32-240 | K670-32-280 | OK9A2-32-280 |
| |
FOR LANDROVER | |||||
RTC5869 | RTC5870 |
|
|
| |
FOR MAZDA | |||||
0603-99-322 | GJ51-32-24X | 0603-99-324 | { 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 = 2721073; 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) } } }) }) }) |