我正在尝试创建一个div并给他一个课但是它不起作用。 有人能帮助我吗?
$(document).ready(function() {
$('input[type=checkbox]').each(function() {
$(this).after($('<div />', {
className: 'test',
text: "a div",
click: function(e){
e.preventDefault();
alert("test")
}}));
});
});
css:
.test {
width:200px;
height:200px;
background-color:#eeeeee;
}
目前他创建了div,但颜色不是#eeeeee
答案 0 :(得分:57)
使用“class”而不是className
$('<div />', {
"class": 'test',
text: "a div",
click: function(e){
e.preventDefault();
alert("test")
}})
答案 1 :(得分:6)
$(document).ready(function() {
$('input[type=checkbox]').each(function() {
$(this).after($('<div />', {
class: 'test',
text: "a div",
click: function(e){
e.preventDefault();
alert("test")
}}));
});
});
答案 2 :(得分:5)
$('<div>', { 'class': 'your_class' })
.load('HTML Structure', CallBackFunction())
.appendTo(document.body);
答案 3 :(得分:3)
$('input[type=checkbox]').each(function() {
$(this).after('<div></div>').addClass('test')
.filter('div').html('a div')
.click(function() {
alert('Handler for .click() called.');
}).end()
.appendTo('this');
});
应该工作:)
答案 4 :(得分:2)
尝试class
而不是className