在您擁有包含文本area的iframe的網頁中,使用javaScript
此代碼獲取iframe參考,並動態標識iframe是使用contentwindow或contentDocument。 It then assigns the reference to the inside variable.
With the inside variable, you can now access the elements within the iFrame and, in this specific case, the textarea:
function iframeRef( frameRef ) { return frameRef.contentWindow ? frameRef.contentWindow.document : frameRef.contentDocument } var inside = iframeRef( document.getElementById('one') )
This comprehensive solution provides reliable access to elements inside iFrames, regardless of their runtime-changing IDs or名稱。
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3