ブラウザのコンソールにdocument.embedsの内容を出力すると、現在の文書内にある埋め込みのリストが返されます。
console.log(document.embeds)
プログラム関連備忘録サイト。主にゲーム。
投稿日:2021年8月27日 更新日:
ブラウザのコンソールにdocument.embedsの内容を出力すると、現在の文書内にある埋め込みのリストが返されます。
console.log(document.embeds)
関連記事
UTF-8エンコード TextEncoder.prototype.encode() TextEncoderオブジェクトを生成、encodeメソッドにUSVString値を渡すと、エンコードされたUin …
カルーセルを実装するjQueryプラグインslickの使い方
こんにちは、今日はカルーセルを実行できるjQueryプラグイン、slickの使い方についてまとめていきます。 公式サイト https://kenwheeler.github.io/slick/ ダウン …
シンプルなレスポンシブチャートJavaScriptライブラリChartist.jsの使い方
公式サイト http://gionkunz.github.io/chartist-js/index.html GETTING STARTEDhttp://gionkunz.github.io/char …
File APIでinput要素で選択したファイルの情報を確認する
サンプル <input type="file"> <script> const input = document.querySelector('i …