如何设置页面加载时默认单击的列表项

时间:2015-09-21 11:03:26

标签: javascript jquery html html-lists

我有一个在页面加载时动态创建的列表视图,我想设置默认情况下要点击的第一个列表项,我该怎么做才能使用jQuery / javascript?

1 个答案:

答案 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);
});