Maison > Article > interface Web > HTML utilise un lien hypertexte pour ouvrir une nouvelle fenêtre, qui peut contrôler les propriétés de la fenêtre
Cet article présente principalement comment utiliser le HTML pour ouvrir une nouvelle fenêtre avec un lien hypertexte et ses propriétés de fenêtre contrôlables. Il utilise principalement la méthode window.open de js. Les amis intéressés peuvent y jeter un œil
1. html La taille de la fenêtre ouverte par le lien hypertexte
<a href="#" onclick="javascript:window.open('http://www.baidu.com','','height=20,width=20,top=0,left=0,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no')">aaaaaaaaaaaaaaa</a>
2. S'il y a beaucoup de guillemets en php et qu'il est difficile de les supprimer, vous pouvez utiliser la méthode suivante :
$openNew="onclick=".'"'."javascript:window.open('host_graphics.php?host_id=$host_id&host_address=$host_address','','height=500,width=600,top=300,left=300,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no')".'"'; echo "<td style='vertical-align: middle;text-align: center;'><a href=#?host_id=$host_id&host_address=$host_address name='host_click' style='text-decoration:underline;' title='点击查看主机系统监控图' $openNew> $host_name </a></td>"; //主机名 点击可查看选中主机的具体信息
Conseils : onclick="javascript:window.open('12.php','','height=500,width=600,top=300,left= 300,toolbar=no,menubar=no ,scrollbars=no, resizing=no,location=no, status=no')"
Le fichier peut être suivi de la valeur de la variable, telle que
host_graphics.php?host_id=$host_id&host_address= $host_address
Si tel est le cas, vous pouvez utiliser GET pour obtenir la valeur dans la nouvelle fenêtre qui apparaît.
3. Exemple :
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>ThD</title> </head> <body> </body> <a href="#" onclick="javascript:window.open('http://www.baidu.com','','height=500,width=600,top=300,left=300,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no')">aaaaaaaaaaaaaaa</a> </html>
Pour plus de HTML, utilisez un lien hypertexte pour ouvrir une nouvelle fenêtre et ses propriétés de fenêtre contrôlables. Pour les articles connexes, veuillez faire attention au PHP. Site chinois !