0

我有 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 来完成吗?

4

1 回答 1

0

在 javascript 本身上,您可以使用它:)

var aElement = document.getElementById('frameDemo').contentWindow.getElementsByTagName("a");
于 2012-07-02T11:55:59.933 回答