Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <script type="text/javascript">
  2. <!--
  3. function redirectlink(text){
  4. window.location = "index.php?keyName="+ text;
  5. }
  6. //-->
  7. </script>
  8.  
  9. <form>
  10.  
  11. <button type="button" id="butt_1" onclick="redirectlink(KEY_POWER)"> 1 </button>
  12.  
  13. <!DOCTYPE html>
  14. <html lang="en">
  15. <head>
  16. <meta charset="UTF-8">
  17. <title></title>
  18. </head>
  19. <body>
  20. <button id="foo">Click</button>
  21. <script type="text/javascript">
  22. document.getElementById("foo").addEventListener("click", function(){
  23. window.location.replace("http://stackoverflow.com/q/36933820/5526354")
  24. })
  25. </script>
  26. </body>
  27. </html>
  28.  
  29. <!DOCTYPE html>
  30. <html lang="en">
  31. <head>
  32. <meta charset="UTF-8">
  33. <title></title>
  34. </head>
  35. <body>
  36. <button id="foo" onclick="action()">Click</button>
  37. <script type="text/javascript">
  38. function action(){
  39. window.location.replace("http://stackoverflow.com/q/36933820/5526354")
  40. }
  41. </script>
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement