报告中有多个超链接,每次单击超链接时,网页都会在新选项卡中打开,是否可以仅在一个选项卡中打开超链接而不是使用 javascript 的多个选项卡?请帮忙
我目前正在使用 window.open 打开网页,我无法使用目标。下面是代码:
I basically have a jqgrid where all the values of a column have hyperlink,
if (GridColNum == 2) //index of the column
{
localStorage.valuekey = $('#filters_grid').jqGrid('getCell', GridRowId, 1);
window.open('http://mywebpage.html');
}
我正在使用本地存储功能在另一个页面中使用单击的值