Colorbox和动态内联HTML

时间:2011-05-19 15:26:24

标签: html dynamic inline colorbox

寻找一些建议

我在.NET中有一个表单。 当用户按下提交时,启动子以检查所有复选框,无线电按钮等... 当有问题时,我将特定问题添加到stringbuilder

按照以下

Dim errors As New StringBuilder
If APACradio.Checked = False And EMEAradio.Checked = False And LATAMCANADAradio.Checked = False Then
        errors.AppendLine(" You must select a Region")
    End If

    If CountryDDL.SelectedValue = "Select" Then
        errors.AppendLine(" You must select a Country")
    End If

    If EmploymentDDL.SelectedValue = "Select" Then
        errors.AppendLine(" You must select a Employment Type")
    End If

etc....

在检查结束时,我希望出现一个Colorbox,逐个列出stringbuilder的行。

之前我曾使用过colorbox的内联HRef,我很喜欢,但这有点不同,因为我无法在这里使用代码预装我的文档。 Colorbox页面本身显示了如何加载HTML页面的示例(示例5),但我想要显示的HTML在内存中比在某个磁盘上显示

我该如何解决这个问题?

tnxs for insight

克里兹

1 个答案:

答案 0 :(得分:4)

为什么不使用ColorBox的html属性?示例:

$.colorbox({html:function(){
  var html = '';
  // do your formatting
  return html;
}});