Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.0k views
in Technique[技术] by (71.8m points)

javascript - Global function is not a function in latest browsers Microsoft Edge & Chrome

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...