我想使用jQuery动态创建项目列表,每个项目都应该有复选框以及最右边的属性选中。 我们应该可以选中取消选中这些复选框。最后应该有一个按钮,它取出未选中的列表项的值。
首先,我无法看到输出。其次,如果解决方案符合我的要求,请提供帮助。如果可能的话请解释一下,因为我对编程很新。以下是我的代码。
<div class="ps_server"></div>
PrimaryValues = {
"EUTESTAPP01": "EUTESTAPP01",
"EUTESTAPP02": "EUTESTAPP02"
};
$.each(PrimaryValues, function(key, value) {
$(".ps_server").append($("<li></li>").attr("value", key).text(value));
var $check = $("li[value=" + key + "]").append($("<input/>").attr({
type: 'checkbox',
name: 'check',
value: 'None',
id: 'slideOne'
}).prop('checked', true).css('float', 'right'));
var $combine = $check.append($(<label>").attr('for', 'slideOne').css('float', 'right'));
});
$(".ps_server").append($("<a>Get Details</a>").attr({
class: 'btn btn-info',
href: "#",
role: "button"
}));
});
我希望复选框看起来像这样 Unable to css property using jquery