Я строю HTML-страницу динамически.
Значение QuestionID изменяется, поскольку данные поступают из базы данных.
Скажи вопрос 1
<input type="text" id="file{{i.QuestionID}}" />
it becomes like this
<input type="text" id="file1" />
На вопрос 2
<input type="text" id="file{{i.QuestionID}}" />
it becomes like this
<input type="text" id="file2" />
В результате я не могу использовать следующий способ
var myEl = angular.element(document.querySelector('#file1'));
Как я могу динамически изменить значение для querySelector (myCustomValue)?
var myEl = angular.element (document.querySelector (myCustomQuestionID));
Пожалуйста, помогите мне.
Заранее спасибо.