Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Twitterの共有ボタンからデータテキストの値を取得しようとしていますが、次のコードを思いつきました:
var twitterTitle = $('.twitter-share-button').attr("data-text"); alert(twitterTitle);
しかし、それは未定義のアラートでした。何か案は?
する必要があります
var twitterTitle = $('.twitter-share-button').data("text");