<!DOCTYPE html> <html lang="zh"> <body> <script type="text/javascript"> let body = document.body; const p = document.createElement('p'); p.textContent = 'This is trigger text'; body.appendChild(p); </script> </body> </html>