Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. QWebView Change Html Text
Forum Updated to NodeBB v4.3 + New Features

QWebView Change Html Text

Scheduled Pinned Locked Moved General and Desktop
2 Posts 2 Posters 1.0k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • I Offline
    I Offline
    IChooseYou
    wrote on last edited by IChooseYou
    #1

    I load a local file:

    ui->webView->load( QUrl( url ) );
    

    The HTML has this div tag:

    <div>CustomerName</div>
    

    I want to change CustomerName to John Doe. What's the best way to do this?

    p3c0P 1 Reply Last reply
    0
    • I IChooseYou

      I load a local file:

      ui->webView->load( QUrl( url ) );
      

      The HTML has this div tag:

      <div>CustomerName</div>
      

      I want to change CustomerName to John Doe. What's the best way to do this?

      p3c0P Offline
      p3c0P Offline
      p3c0
      Moderators
      wrote on last edited by
      #2

      Hi @IChooseYou and Welcome,
      AFAIK you can use QWebElement and QWebFrame to do so. QWebElement has find* methods (findAll and findFirst) which can be used find the collection of elemets or the exact particular element. Then later once you found out that particular QWebElement you can invoke its methods like setPlainText or tagName.
      So for eg: in your case you can provide a id to the div element using which you can find that element

      <div id=custname>CustomerName</div>
      
      //finding that element
      QWebElement document = webview->page()->mainFrame()->documentElement();
      QWebElement element = document.findFirst("div#custname");
      element.setPlainText("John Doe");
      

      157

      1 Reply Last reply
      0

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved