download.html 350 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <button type="button" onclick="callArkTS()">Click Me!</button>
  5. <p id="demo"></p>
  6. <script>
  7. function callArkTS() {
  8. let str = testObjName.test("哈哈哈哈哈哈");
  9. document.getElementById("demo").innerHTML = str;
  10. console.info({message: 'ArkTS Hello World!'});
  11. }
  12. </script>
  13. </body>
  14. </html>