| divタグの幅の取得 |
| getComputedStyleで値を取得 |
| div width |
const test1 = document.getElementById('test1');
const width = getComputedStyle(test1).width;
console.log("width:"+width);
const result1 = document.getElementById('result1');
result1.innerText = width;
const btn1 = document.getElementById("btn1");
btn1.addEventListener("click", () =>
{
const test2 = document.getElementById('test2');
test2.style.width = 150+"px";
});
| Get the width of a div tag |
| Get the value with getComputedStyle |
| div width |
const test1 = document.getElementById('test1');
const width = getComputedStyle(test1).width;
console.log("width:"+width);
const result1 = document.getElementById('result1');
result1.innerText = width;
const btn1 = document.getElementById("btn1");
btn1.addEventListener("click", () =>
{
const test2 = document.getElementById('test2');
test2.style.width = 150+"px";
});
| ホームページおよプリ等に掲載されている情報等については、いかなる保障もいたしません。 ホームページおよびアプリ等を通じて入手したいかなる情報も複製、販売、出版または使用させたり、 または公開したりすることはできません。 当方は、ホームペーよびアプリ利用したいかなる理由によっての障害等が発生しても、 その結果ホームページおよびアプリ等を利用された本人または他の第三者が被った損害について 一切の責任を負わないものとします。 |