HTMLEmbedElement: src 屬性
HTMLEmbedElement 介面的 src 屬性返回一個字串,該字串指示被嵌入資源的 URL。
它反映了 <embed> 元素的 src 屬性。
值
字串。
示例
html
<embed
id="el"
type="video/quicktime"
src="movie.mov"
width="640"
height="480"
title="Title of my video" />
js
const el = document.getElementById("el");
console.log(el.src); // Output: "movie.mov"
規範
| 規範 |
|---|
| HTML # dom-embed-src |
瀏覽器相容性
載入中…