我想获取页面中某些复选框的值,但问题是此复选框是由 ajax 创建的,以及在我的 ajax 安装我的复选框之前如何执行 javascript,该函数获取此元素的值一片空白。
代码是这样的:
function salvar()
{
//here is the problem, because this inputs is not here,
//I have a ajax function that creates this inputs
var checkBoxes = $('input[name=checkbox]');
var idsTelas;
var i = 0;
$.each(checkBoxes, function()
{
if ($(this).attr('checked'))
{
idsTelas[i] = $(this).val();
i++;
}
});
}