我有<iframe>
嵌入了本地文件。我不知道如何在本文档中获得特定元素
我已尝试使用window.top.document.getElementById('numPages')
和$("#myiframe").contents().find("#numPages")
来获取ID为numPages的元素。
答案 0 :(得分:0)
尝试使用var iframe = document.getElementById("myFrame"),
idocument = iframe.contentDocument
// Use idocument instead of document
例如:
adb shell am start -W -a android.intent.action.VIEW -d "https://play.google.com/store/apps/details?id=com.gonevertical.chatterbox\\&pcampaignid=appinvite_\\&referrer=deep_link_id%3Dhttps://gonevetical.com/chatterbox/invite/group/-KJnkQfRjZfAH9-U_U4a%26invitation_id%3D20832144509-9642991a-de62-4d40-ba93-b991208c2d31" com.gonevertical.chatterbox
答案 1 :(得分:0)
要在普通javascript中获取元素,请尝试使用contentWindow
document.getElementById('myiframe').contentWindow.document.body.getElementById('numPages');