我想在href页面上添加一些带有window.location.href('link');
点击按钮后,此javascript功能正常
这是我的完整代码
$(".crtresto").click(function(){
window.location.href = ('useron?on=profil&to=12345');
//This class is in the files useron
$('#crtresto').addClass('active');
});
所以,结论 如果我点击带有类(.crtresto)的按钮,那么页面将被定向 指向该页面后, useron?on = profil& to = 12345 然后自动从id(#crtresto)
添加类之前谢谢你
答案 0 :(得分:0)
这不会奏效。重定向后,您无法执行任何操作。因此,更好的选择是编写代码以在useron页面上添加类。
$(document).ready(function(){
$('#crtresto').addClass('active');
});