jQueryを使わずに属性の追加を変更したい
jQueryの場合
javascript
1jQuery(function() { 2 jQuery(".Logo").width(256).height(256); 3});
使わない場合
javascript
1document.getElementsByClassName('Logo')[0].setAttribute("width", "256"); 2document.getElementsByClassName('Logo')[0].setAttribute("height", "256");
と記述するとエラーがでてしまいます。
Uncaught TypeError: Cannot read property 'setAttribute' of undefined
どのように記述すればよいのでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/01 15:51