0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

初心者のプログラミング4

Posted at

勉強の記録

勉強した内容

  • ツイッターに投稿するようのボタンの追加

何をベースに勉強してるか

内容の詳細

-今回追加したコード

  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からタグを追加していくのが良く分かったと思います。

むずかしかったよ

  • 全体的に難しかった、なぜエラーが出ているのか分からないのでもう一度チェックする

次回やる予定のこと

  • 今回の修正と次回の授業
0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?