我的某些博客链接在Google chrome中被禁用。当我单击带有target=“_blank”
的链接时,它表明弹出窗口阻止程序不允许其打开。
我发现了一些有关rel=“noopener noreferrer”
的帖子。
现在,我想将rel=“noopener noreferrer”
添加到所有带有target=“_blank”
的链接中。
答案 0 :(得分:0)
赞
<?php
$x=0;
while($iArticles < count($listeArticlePourUnDossier))
{
$x++;
?>
<tr>
<td><?php echo ($listeArticle[$iArticles]['name']); ?></td>
<td>
<input type="text" name="Price[<?php echo $x; ?>]" id="Price_<?php echo $x; ?>"/>
<input type="text" name="Qty[<?php echo $x; ?>]" id="Qty_<?php echo $x; ?>" />
<input type="text" name="Discount[<?php echo $x; ?>]" id="Discount_<?php echo $x; ?>" />
<input type="text" name="Subtotal[<?php echo $x; ?>]" id="Subtotal_<?php echo $x; ?>" />
</td>
</tr>
<?php
$iArticles++;
}
?>