とりあえず例示されたものは普通に動くようですが、動かない例を挙げられますか?
javascript
1<script>
2$(function(){
3 const mmss="x";
4 const comment="y";
5 const item=[1,2,3];
6 item.forEach(i => {
7 const targetDiv2 = $(".ytp-tooltip");
8 const commentDiv = $(
9 `<div class="ytp-tooltip-text-wrapper22" value=${mmss} style="position: absolute; bottom: 100px;background-color: rgba(28,28,28,0.9); display: none">${comment}</div>`
10 );
11 try {
12 targetDiv2.append(commentDiv);
13 console.log("appendした", commentDiv, targetDiv2);
14 } catch (err) {
15 console.log("err", err);
16 }
17 });
18});
19</script>
20<div class="ytp-tooltip"></div>
21
debug
javascript
1<script>
2$(function(){
3 const mmss="x";
4 const comment="y";
5 const item=["a","b",null,"c"];
6 item.forEach((i,j)=> {
7 const targetDiv2 = $(".ytp-tooltip");
8 const commentDiv = $(
9 `<div class="ytp-tooltip-text-wrapper22" value=${mmss} style="position: absolute; bottom: 100px;background-color: rgba(28,28,28,0.9); display: none">${comment}<span style="display:none">${j}</span></div>`
10 );
11 try {
12 targetDiv2.append(commentDiv);
13 console.log("appendした", commentDiv, targetDiv2);
14 } catch (err) {
15 console.log("err", err);
16 }
17 });
18});
19</script>
20<div class="ytp-tooltip"></div>
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/18 01:15
2019/09/18 01:26 編集