在報表中有多個超鏈接,每次點擊超鏈接時,網頁在新標籤頁中打開, 是否可以在一個選項卡而不是多個使用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');
}
,我使用本地存儲功能
冷靜,你在哪裏得到從源? – blackhawk
@blachawk,[它在HTML規範(http://www.w3.org/html/wg/drafts/html/master/single-page.html#attr-hyperlink-target)。 – zzzzBov
剛編輯我的問題,對不起,粘貼 – Suri