How to change label text?

前端 未结 3 1238
感动是毒
感动是毒 2021-01-22 05:04

I try to change label text but nothing works

  function changeText(lblTxt) {

        var lblAjaxUpdate = $(\"#\" + Key).find(\"[class=\'label\']\");//finds the          


        
相关标签:
3条回答
  • 2021-01-22 05:24

    A basic use with

    $('label').text();
    

    is shown here http://jsfiddle.net/aCQg9/

    0 讨论(0)
  • 2021-01-22 05:30

    You need .text()

    lblAjaxUpdate.text(lblTxt);
    

    You can also use InnerText on DOM object but not on jQuery object, use indexer or .get() to convert the jQuery object to DOM

    lblAjaxUpdate[0].InnerText = lblTxt;
    lblAjaxUpdate[0].InnerHtml = lblTxt;
    

    OR

    lblAjaxUpdate[0].get(0).InnerText = lblTxt;
    lblAjaxUpdate[0]..get(0).InnerHtml = lblTxt;
    
    0 讨论(0)
  • 2021-01-22 05:37

    in your case:

    lblAjaxUpdate.text(lblTxt)
    

    or

    lblAjaxUpdate.get(0).InnerText = lblTxt
    
    0 讨论(0)
提交回复
热议问题