Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

The following code works fine in my IE-10 but does not work in Chrome and Edge browsers. Any pointers will be appreciated.

form.jsp

 <div id="myDiv">
    <iframe id="iframeId" name="theIframe"  src="" frameborder="0" marginwidth="10" marginheight="20" scrolling="auto" width="100%" height="100%">
    </iframe>   
</div>

submit element in the form.JSP

<div id="submitButton">
    <input id="vButton" type="button" name="PullReport" value="Submit Me" onClick="document.theIframe.submitReport();"/>
</div>

myfunc.js

function submitReport () {
//this works
}

Error : at this line document.theIframe.submitReport()

> Uncaught TypeError: document.theIframe.submitReport() is not a
> function

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...