What is the difference between jQuery: text() and html() ?

后端 未结 16 1720
傲寒
傲寒 2020-11-22 03:45

What the difference between text() and html() functions in jQuery ?

$(\"#div\").html(\'Linkhello\         


        
16条回答
  •  萌比男神i
    2020-11-22 04:26

    **difference between text()&& html() && val()...?
    #Html code..
    
    # jquery code..
    $(document).ready(function(){
       $("#d").html();
       $("#d").text();
       $("#d").val();
    
    });
    

提交回复
热议问题