<span id=1>this is my </span><span id=2>selected text</span><span id=3> but this is not selected</span>
我要趕通過與jquery用戶選擇的文本的跨度ID列表。
在這個例子中,我想:[1,2]
感謝
<span id=1>this is my </span><span id=2>selected text</span><span id=3> but this is not selected</span>
我要趕通過與jquery用戶選擇的文本的跨度ID列表。
在這個例子中,我想:[1,2]
感謝
var delimitedList = '';
$('pre span').each(function() {
delimitedList += $(this).attr('id') + ',';
});
//Remove last comma
delimitedList = delimitedList.substring(0, delimitedList.length - 1)
也許你可以添加一個類,都應該跨度來選擇,像這樣 -
<span id="1" class="selected">this is my </span><span id="2" class="selected">selected text</span><span id=3> but this is not selected</span>
,然後使用以下的jQuery -
var selectedByUser = $("span.selected");
基於提供的代碼的問題沒有意義。你有3個兄弟姐妹跨度,但你想要選擇其中一個的前兩個ID?不計算.. – Kon 2011-05-13 16:17:29