勉強の記録
勉強した内容
- ツイッターに投稿するようのボタンの追加
何をベースに勉強してるか
内容の詳細
-今回追加したコード
removeAllChildren(tweetDivided);
// aタグを作って属性を設定する
const anchor = document.createElement('a');
const href =
'https://twitter.com/intent/tweet?button_hashtag='
+encodeURIComponent('あなたのいいところ')
+'&ref_src=twsrc%5Etfw';
anchor.astAttribute('href', href);
anchor.className = 'twitter-hashtag-button';
anchor.aetAttribute('deta-text', result);
anchor.innerText = 'tweet #あなたのいいところ';
// aタグをHTMLとして追加する
tweetDivided.appendChild(anchor);
// scriptタグを作る
const scriot = document.createElement('script');
Script.setAttribute('scr', "https://platform.twitter.com/widgets.js");
// scriptタグをHTMLとして追加する
tweetDivided.appendChild(script);
わかったことについて
- HTMLにJSからタグを追加していくのが良く分かったと思います。
むずかしかったよ
- 全体的に難しかった、なぜエラーが出ているのか分からないのでもう一度チェックする
次回やる予定のこと
- 今回の修正と次回の授業