我有 2 个名为 try1 和 try2 的文件的以下代码。
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 来完成吗?