私は、try1 と try2 という名前の 2 つのファイルの次のコードを持っています。
1.try1.php
<html>
<head>
<title></title>
</head>
<body style="height: 1000px">
<iframe name="frametest" id="frameDemo" src="try2.php" style="height: 100%;width: 100%;z-index: 10"></iframe>
</body>
</html>
2.try2.php
<html>
<head>
<title></title>
</head>
<body>
<div>
<pre>
<?php echo htmlentities(@file_get_contents("http://stackoverflow.com")); ?>
</pre>
</div>
</body>
try1.php の iframe 内のすべての a href リンクを強調表示するにはどうすればよいですか? これはjquery btでどのように行うことができると思いますか?