我想将变量传递给元素。我的html就像
<input class="form-control" data-bind="textInput: code, attr: { id: 'myTable_code_' + $index() }" type="text" id="myTable_code_0" style="">
我声明元素喜欢
[FindsBy(How = How.Id, Using = "myTable_code_" + myVariable), CacheLookup]
private HtmlElement _Code;
但是,那是行不通的。有没有人知道如何将变量传递给属性。我正在使用 C#