0
此處的目標是檢測用戶是否在我的網站上籤出,然後在未選中某個框的情況下提示他們使用特殊提醒。將複選框提醒功能與檢測功能結合
我如何結合兩個功能來做到這一點?
的檢測功能,到目前爲止,這是
var pathArray = window.location.pathname.split('/');
if (pathArray.length >= 3) {
if (pathArray[1].toLowerCase() == "commerce") {
var page = pathArray[2].toLowerCase();
if (page.indexOf("show-cart") == 0) {
console.log("Detected the cart page."); // This works
} else if (page.indexOf("checkout") == 0) {
console.log("Detected the checkout page."); // Does not work (no injection)
} else if (page.indexOf("order-confirmed") == 0) {
console.log("Detected the order confirmation page."); // Does not work (no injection)
}
}
}
和複選框報警功能是這樣的:
function validate() {
var checkoutHistory = document.getElementById('shipToBilling');
if (checkoutHistory.checked) {
} else {
alert("You have elected to turn off checkout history.");
}
}
window.addEventListener("load", validate, false);
這並不提供答案這個問題。要批評或要求作者澄清,在他們的帖子下留下評論 - 你總是可以評論你自己的帖子,一旦你有足夠的[聲譽](http://stackoverflow.com/help/whats-reputation),你會能夠[評論任何帖子](http://stackoverflow.com/help/privileges/comment)。 – Dan 2014-10-03 01:07:05
當用戶點擊按鈕時,onClick事件可以處理/調用他的兩個方法 – WorkingMonk 2014-10-03 01:25:38