我的jQuery代码在新窗口中打开了这个href。我想在同一窗口中打开此href,但这不起作用。 (切换侧面)
jQuery('.dig-pub').on('click', function() {
url = jQuery(this).parent().find('a').attr('href');
// Remove this (opens new window)
window.open(url);
// Use below to open link in the same window
//$(location).attr(url);
});
答案 0 :(得分:0)
实际上,要在同一窗口中打开url,就像使用window.location一样:
jQuery('.dig-pub').on('click', function() {
url = jQuery(this).parent().find('a').attr('href');
window.location.href = url;
});