我无法更改第一项的名称。 使用下面的示例适用于第二项,依此类推,但我不能更改第一项的名称,只能更改后续项目?如何使用jQuery访问第一个项目。 李:nth(0)
var li = panelbar.wrapper.find("> li:nth(1) span.k-link.k-header");
// Replace the content by "Title"
li.contents().first().replaceWith("Title");
答案 0 :(得分:0)
对于第一行使用第一个选择器“:first”
var li = panelbar.wrapper.find("> li:first span.k-link.k-header");
// Replace the content by "Title"
li.contents().first().replaceWith("Title");