本文介绍了JQuery将多个类添加到div标记的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想使用JQuery获取下一行代码:
< div class =something something_else> ;
< / div>
我使用 $(document.createElement('div'));
创建div,但是如何在div中添加某些
和 something_else
?
我确定这是基本的东西,但我似乎无法弄明白。
试试这个:
$('< div />',{class :something something_else})
I would like to obtain the next line of code using JQuery:
<div class="something something_else">
</div>
I use $(document.createElement('div'));
to create the div, but then how do I add something
and something_else
to the div?
I'm sure it's something basic, but I can't seem to figure it out.
解决方案
Try this:
$('<div/>', {"class": "something something_else" })
这篇关于JQuery将多个类添加到div标记的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
08-24 09:25