Jump to content

peterlu

New Members
  • Posts

    1
  • Joined

  • Last visited

peterlu's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. This may be a simple question. I think I miss one function to get the link button working. I need users enter their keywords into placeholder and click convert button, so the result can show up, not enter in the script. Can anyone help? Thanks much! <body> <p>Enter foregin character and click covert</p> <input id="demo" placeholder="Keyword"> <button onclick="myFunction()">Convert</button> <p id="demo"></p> <script> function myFunction() { var uri = "my test.asp?name=ståle&car=saab"; var res = encodeURI(uri); document.getElementById("demo").innerHTML = res; } </script> </body>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.