子 div の内容を変更せずに、子 div から親 div のテキストを変更しようとしています。
私は持っている
<div id='testDiv'>
this is the test parent div
<div id='child1'>
lots of contents and child div
...................
</div>
more div/child div and contents...
</div>
私のjqueryで
$('child1 div a').click(function(){
$('#testDiv').text('new text'); //this will remove the child1 div and all the contents inside testDiv
//I want to replace 'this is the test parent div' text to 'newt text'
})
とにかくこれを成し遂げることはありますか?どうもありがとう!