Applying styles from CSS to newly appended elements

后端 未结 3 709
太阳男子
太阳男子 2021-01-04 19:13

I add an element to a parent div dynamically.

$(\'.some_div\').append(\"
  • hey!
  • \")

    In my CSS,

    
    
            
    3条回答
    •  失恋的感觉
      2021-01-04 20:05

      Your string concatenation could be the problem, since your string literal is enclosed within "" any occurrence of " within the string has to be escaped

      $('.some_div').append('
    • hey!
    • ')

      Demo: Fiddle

      Note: also note that li is a valid child for ul or ol elements, so the some_div must be either one of them

    提交回复
    热议问题