2013年5月31日 星期五

[雜記]使用JavaScript對DOM進行新增/複製/修改/移除/取代

只是一個小練習,當然一定有更好的寫法,請別鞭我><。
  • 新增: appendChild
  • 複製: cloneNode
  • 修改: innerHTML
  • 移除: removeChild
  • 取代: replaceChild

appendChild:
Check out this Pen!


cloneNode:

Check out this Pen!

innerHTML:

Check out this Pen!

removeChild:

Check out this Pen!


replaceChild:

example:http://www.maht0x0r.net/library/computing/replaceChildExample.htm


還不錯的學習網站:

沒有留言:

張貼留言

若你看的文章,時間太久遠的問題就別問了,因為我應該也忘了... XD

Vue multiselect set autofocus and tinymce set autofocus

要在畫面一進來 focus multiselect 的方式: 參考: https://jsfiddle.net/shentao/mnphdt2g/ 主要就是在 multiselect 的 tag 加上 ref (例如: my_multiselect), 另外在 mounted...