在下面的代码中,我有一个动态文本框和javascript函数。我希望通过将$的值转换为特定文本框来获取值。但是我的实际结果我可以通过spilting从特定的动态文本框和不同的文本框中获取值$ .Pls的值帮助我从特定的动态文本框中获取价值。 Asp.net
<asp:TextBox ID="txtField" runat="server" width="200Px"></asp:TextBox>
JS:
str = "";
$('input[type=text]').each(function () {
str += $(this).val() + "$";
});
if (str != "")
str = str.substring(0, str.length - 1);
alert(str);
答案 0 :(得分:1)
只是一个想法:
创建动态文本字段时,请使用特定class
说dyn
来定义它们:
str = "";
$('input[type=text] .dyn').each(function () {
str += $(this).val() + "$";
});
//your furthur codes