我正在尝试创建下一个按钮,会触发更改单个标签中的部分。我正在使用的步骤:第一,我需要获取当前选项卡的URL并将条件应用于该URL以检查是否应该转到下一部分。如果为true,那么我将使用该网址中的ID以及triggerClick
事件idtriggerClick
代码:
var currentURL = window.location.href;
if(currentURL =="http://localhost/xyz/store?id=7"){
id.trigger('click') //Now how to move onto the next section after an event is triggered.
}
else
答案 0 :(得分:0)
您可以在不指定网址中的ID的情况下执行此操作。你需要使用javascript / jquery。以下是实现此目的的参考步骤。
Javascript有 windows 全局对象,您可以在代码的最开头在其中创建自定义对象。
window.customobject = {
step_one : true;
step_two : false;
};
触发按钮单击并更新步骤对象。
jQuery('#buttonId').click(function(e){
window.customobject.step_one = false;
window.customobject.step_two = true;
});
检查步骤对象并更新网页中的部分。
jQuery('#buttonId').click(function(e){
window.customobject.step_one = false;
window.customobject.step_two = true;
if(window.customobject.step_two){
//Update your content section
}
});
希望这有帮助!
由于