我有一个由6个步骤组成的表单 - 我试图提醒每个索引 - 在第一个索引被提醒的那一刻但是当我点击下一个它警告第一个索引并且它打破了脚本 - 它应该显示当我点击下一个按钮时的下一个索引。为什么this.get()不是函数?
更新:即使我点击下一个按钮转到表格的第2步,它的循环也会完全索引 - 我是否需要做.click()函数????
<script type="text/javascript">
$('.AspNet-DataList td a').each(function (index) {
alert(index + ': ' + $(this).text());
((this).get(text));
$(this).css({ 'background-image': 'url(/assets/img/radarstep' + (index + 1) + 'faint.png)',
'background-repeat': 'no-repeat',
'height': '25px',
'width': '25px',
});
});
答案 0 :(得分:0)
问题在于行(this).get()
this
对象在这种情况下为锚标记<a>
,并且没有为锚标记定义.get()
方法。