gpt4 book ai didi

javascript - 在 jQueryUI 对话框中显示和格式化数组元素

转载 作者:行者123 更新时间:2023-11-30 17:53:40 26 4
gpt4 key购买 nike

在我的应用程序中,有一个选项可以通过选中复选框来选择文档。然后,如果用户单击提交按钮,他会看到一个确认框,其中显示他选择要删除的所有文档。我将所有选定的文档存储在一个数组中。现在我想以格式良好的方式表示文档列表。喜欢

Warning: Below mentioned documents will be deleted, review them and click OK to proceed.

1. Document 1
2. Document 2
3. Document 3
n. Document n

所以我的确认框应该如上所示。由于无法使用默认的 confirm 框完成此操作,因此我使用了 jQuery UI dialog 但我也无法对其进行格式化。有人可以帮我格式化吗?是否有任何其他选项可用于在确认框中显示列表?

What I've tried .

最佳答案

var str="";
for(var i=0;i<arrayis.length;i++){
str+=(i+1)+")"+arrayis[i]+"<br/>";
}


ConfirmDialog("Below mentioned documents will be deleted, review them and click OK to proceed?"+"<br/>"+str);

http://jsfiddle.net/nM3Zc/1003/

关于javascript - 在 jQueryUI 对话框中显示和格式化数组元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18461187/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com