我有一个小确认,显示页面上的数据,供用户重新阅读,看看他是否犯了任何错误,我已经包括了一个类别列表,但我无法在确认中显示它们我的代码如下:
$("#add_campaign").on('submit', function(event){
if(!confirm("Confirm:n" +
"nCategorii selectate: " + categoriesInConfirm() +
"nContinue?")) {
event.preventDefault();
}
});
});
function categoriesInConfirm()
{
$('#newCategories li span').each(function (index,value){
$(value).text())
})
}
我在控制台中使用以下行来检查我是否可以获得列表并且它有效:
$('#newCategories li span').each(function (index,value){console.log($(value).text())})
我不知道如何在我的编码环境中实现它
你的函数需要这样返回值
function categoriesInConfirm()
{
var cats = '';
$('#newCategories li span').each(function (index,value){
console.log($(this) + ' ,' + $(this).text());
cats += $(this).text() +', ';
});
cats = cats.substring(0, cats.length - 2); // remove last ,
return cats;
}