我想将i的值作为自动建议的参数传递。我的意图是传递从 1960 年至今的i值。
<script>
var i=1960;
var currentTime = new Date();
var year = currentTime.getFullYear();
//document.write("The year is " + year);
while (i <= year)
{
//document.write("The year is " + i);
//document.write("<br />");
$("#txtYear").autocomplete([+i], {
width: 100,
//multiple: true,
mustMatch: true,
matchContains: true,
//formatItem: formatItem,
//formatResult: formatResult
});
i++;
}
});
</script>
请帮帮我。非常感谢你。