Sitecore WFFM复选框ID

时间:2018-02-09 01:33:41

标签: .net sitecore

我正在尝试在输入字段中获取由WFFM生成的复选框的id。以下是生成的html的片段:

<label>
<input id="wffm9545cec6a2354c0a88f8bc4a5b470cbd_Sections_0__Fields_9__Value" 
    name="wffm9545cec6a2354c0a88f8bc4a5b470cbd.Sections[0].Fields[9].Value" 
    type="checkbox" value="true">
<input name="wffm9545cec6a2354c0a88f8bc4a5b470cbd.Sections[0].Fields[9].Value" 
    type="hidden" value="false">I agree ...**

我这样做的原因是因为我的代码因为不对ADA Screen Reader友好而感到厌烦。我需要的格式是这样的:

<input id="unique-id-1" ...>
<label for="unique-id-1" type="checkbox" ...>Label text</label>

我的解决方案是使用建议的格式编辑复选框(或者可能创建自定义字段)的默认cshtml文件。我也愿意接受更好的解决方案。

谢谢。

0 个答案:

没有答案