我有一个在页面加载时动态创建的列表视图,我想设置默认情况下要点击的第一个列表项,我该怎么做才能使用jQuery / javascript?
答案 0 :(得分:1)
这样:
$(function () {
// Give the below one, or use the perfect selector for your first <li>
$("li").first().trigger("click");
});
或者,如果您使用<select>
代码制作它,则需要以不同的方式处理它:
$(function () {
// Give the below one, or use the perfect selector for your first <select>
$("select option").first().prop("selected", true);
});