Movatterモバイル変換


[0]ホーム

URL:


  1. 面向开发者的 Web 技术
  2. Web API
  3. HTMLIFrameElement
  4. HTMLIFrameElement:src 属性

此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in EnglishAlways switch to English

HTMLIFrameElement:src 属性

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015年7月⁩.

HTMLIFrameElement.src 是一个反映包含要嵌入内容地址的src HTML 属性的字符串。

请注意,以编程的方式,通过Element.removeAttribute() 等方法从<iframe> 中移除src 属性会导致 iframe 加载about:blank

语法

js
src = iframeElt.srciframeElt.src = src

示例

js
const iframe = document.createElement("iframe");iframe.src = "/";const body = document.querySelector("body");body.appendChild(iframe); // 使用完整的 URL 作为引用源来获取图像

规范

Specification
HTML
# dom-iframe-src

浏览器兼容性

参见

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp