2009-08-17 5 views

답변

2

뭔가 :

$(document).ready(function() { 
    $("#SuperTextbox1_Results").children('li').each(function(){ 
     $(this).text('blah'); 
    }); 
}); 
+0

가 어떻게 CONCAT 대신 리 값을 바꾸려면이를 사용해야합니까? –

+0

$ (this) .append ('blah'); – krishna

+0

연결이 처음에 있다면? –

1

방법

$('#SuperTextBox1_Results li').text('whatever you want'); 

에 대한 또는 레이블하려면이 같은

$('#SuperTextBox1_Results li').html('<label>whatever you want</label'); 
1

뭔가를? 이 라인을 따라

$('#SuperTextBox1_Results li').each(function(){$(this).text('whatever');}) 
관련 문제