使用 JavaScript 更改 iFrame 源
当您在使用 JavaScript 更改 iFrame 源时遇到困难(如提供的代码片段中所示),检查单选按钮选择的事件处理程序至关重要。在此特定实例中,代码使用过时的 onselect 事件处理程序,现代浏览器不再支持该处理程序。
要解决此问题,请将 onselect 替换为 onclick:
<code class="html"><input name="calendarSelection" type="radio" onclick="go('...')" /></code>
此外, getElementById 函数中的括号应从 ['calendar'] 更改为 ('calendar')。
<code class="js">document.getElementById('calendar').src = loc;</code>
通过这些调整,代码应按预期运行,允许您在以下情况下更新 iFrame 的源:单击单选按钮。
以上是如何解决由于过时的事件处理程序而导致 JavaScript 中的 IFrame 源更改失败?的详细内容。更多信息请关注PHP中文网其他相关文章!