2
1

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.

ブラウザのよくわからない挙動

Last updated at Posted at 2021-08-20

#どんな挙動?

tr,th,tdが消滅してしまう

#状況

テンプレートとして用意したタグの中から

tr,th,tdタグがすっぽり消滅してしまう

##例

ソース

<table>
 <tbody>
 </tbody>
</table>

<div id="template">
 <tr>
  <th>日付</th>
  <td><a href="http://map.html">場所</a></td>
  <td>
   <p>注意事項</p>
  </td>
 </tr>
</div>

ブラウザ上

<div id="template">
  <a href="htpp://map.html">場所</a>
  <p>注意事項</p>
</div>

なぜかtr,th,tdが無くなっている

#解決策

  1. id templateのタグをdivではなくtableにする
<table id="template">
 <tr>
  <th>日付</th>
  <td><a href="http://map.html">場所</a></td>
  <td>
   <p>注意事項</p>
  </td>
 </tr>
</table>

これで意図通りに動いてくれました。

#あとがき

頻繁にとは言わないけれど、それなりに使う状況ありそうなものだけれど、この挙動についての記事を探してみたけれど見当たらず
みんな躓かないのかな~?
こんなことで3時間も潰してしまったので3年ぶりに吐き出してみました。
3年前とあまり書いているレベルが変わっていないような^^;
それでもまあ開発は順調に進んでいます。

初めはjQuery.clone()不具合のような記事を書きましたが
@nishimura さんにご指摘いただきブラウザの挙動によるものとわかり全体的に修正を入れてあります。

@nishimura さん
ありがとうございました!

2
1
5

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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?