如何使用IE通过AHK将按钮插入网页

时间:2015-01-27 11:47:06

标签: autohotkey

我尝试使用IE和AHK在页面上的div中插入一个按钮。

这就是我所拥有的:

SetTitleMatchMode, 2

wb := IEGet("Page1")
wb.document.all.external.innerText := "<input type=""button"" value=""Click Me!"" />"


IEGet(Name="")        ;Retrieve pointer to existing IE window/tab
{
    IfEqual, Name,, WinGetTitle, Name, ahk_class IEFrame
    {
        Name := ( Name="New Tab - Windows Internet Explorer" ) ? "about:Tabs" : RegExReplace( Name, " - (Windows|Microsoft) Internet Explorer" )
    }

    For wb in ComObjCreate( "Shell.Application" ).Windows
    {
        If ( wb.LocationName = Name ) && InStr( wb.FullName, "iexplore.exe" )
        {
            Return wb
        }
    }
}

div的ID为&#34;外部&#34;。我使用的是IE 11,Win 8.1和AHK 1.1.19.01。页面标题是&#34; Page1&#34;。

当我运行上面的脚本时,我没有得到一个按钮,但我得到一个按钮的html(作为文本)。显然转换&lt;和&gt;而是改为相关实体。

如何获得按钮?

1 个答案:

答案 0 :(得分:0)

没关系 - 想通了。它更像是一个IE DOM问题,而不是AHK问题。

这就是它的完成方式:

wb := IEGet("Page1")

inp := wb.document.createElement("input")
typ := wb.document.createAttribute("type")
typ.value := "button"
val := wb.document.createAttribute("value")
val.value := "Click Me!"
inp.setAttributeNode(typ)
inp.setAttributeNode(val)

wb.document.all.external.appendChild(inp)