JavaScript を使用して要素の背景画像 URL を抽出する方法
JavaScript では、設定されている背景画像の URL を取得することができます。要素を動的に指定します。その方法は次のとおりです。
Q:
背景画像の URL を取得するにはどうすればよいですか?
A: 背景画像の URL を取得するには、次のコードを使用できます:
var img = document.getElementById('your_div_id'); var style = img.currentStyle || window.getComputedStyle(img, false); var bi = style.backgroundImage.slice(4, -1).replace(/"/g, "");
それを壊しましょうdown:
これで、bi には背景画像の URL のみが含まれます。
例:
// Get the URL from an element with id "testdiv" var img = document.getElementById('testdiv'); var style = img.currentStyle || window.getComputedStyle(img, false); var bi = style.backgroundImage.slice(4, -1).replace(/"/g, ""); // Display the URL console.log('Image URL: ' + bi);
これは背景の URL を出力します。画像をコンソールに送信します。
以上がJavaScript を使用して Div 要素から背景画像 URL を取得する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。