我有一個元素的路徑如下。jQuery - 按元素路徑查找元素
html:eq(0)>body:eq(0)>div#header>div#blueAreaCommon>div#titledescription>div.title>a:eq(0)
現在我需要更改該元素的文本。所以我做了如下。
$(document).find("html:eq(0)>body:eq(0)>div#header>div#blueAreaCommon>div#titledescription>div.title>a:eq(0)").html("Some text");
但它不起作用。有沒有解決方法?
謝謝!
,因爲你有這麼多的元素的ID爲什麼要這樣 –
它可以簡單如'$('格# titledescription> div.title> a:eq(0)')。html(「Some text」);' –
我會簡單地做'$('#titledescription .title a:first-child')。text('some text ');' – Praveen