1

我正在尝试获取框架内的文档。

以下不会失败:

NPN_GetProperty(aInstance, windowObject, NPN_GetStringIdentifier("frames"), &frames)) 

但以下失败,返回一个空元素:

NPN_Invoke(aInstance, NPVARIANT_TO_OBJECT(frames), NPN_GetStringIdentifier("item"), &index, 1, &currentFrame) 

我也尝试使用 tag 检索所有元素IFRAME,但访问contentWindow orcontentDocument属性返回一个 void 元素。

还有其他方法吗?

4

1 回答 1

1

最后,我已经弄清楚为什么contentWindow要返回一个 void 元素。这是获取 iframe 文档的代码:

STRINGZ_TO_NPVARIANT("IFRAME", searchString); 
NPN_Invoke(instanceNPP,NPVARIANT_TO_OBJECT(document), NPN_GetStringIdentifier("getElementsByTagName"), &searchString, 1, &frameCollection);

if (!NPN_GetProperty(instanceNPP, NPVARIANT_TO_OBJECT(frameCollection), NPN_GetStringIdentifier("length"), &lenght))
{
    return;
}

for (int i=0; i<NPVARIANT_TO_INT32(lenght); i++)
{
    INT32_TO_NPVARIANT(i, index);
    if (!NPN_Invoke(instanceNPP, NPVARIANT_TO_OBJECT(frameCollection), NPN_GetStringIdentifier("item"), &index, 1, &frameItem))
    {
        continue;
    }
    if (!NPN_GetProperty(instanceNPP, NPVARIANT_TO_OBJECT(frameItem), NPN_GetStringIdentifier("contentWindow"), &contentWindow))
    {
        continue;
    }
    if (!NPN_GetProperty(instanceNPP, NPVARIANT_TO_OBJECT(contentWindow), NPN_GetStringIdentifier("document"), &frameDocument))
    {
        continue;
    }
    //do something with the frame's document
}
于 2011-06-15T12:38:44.290 回答