按鈕點選時如何將 URL 放入變數中 - jQuery?
為此,請在按鈕點選時呼叫函式。
示例
以下是程式碼 -
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <body> <button class="copyTheURL" onclick="demoForCopyURL()"> ClickMeToCopyURL </button> https://tutorialspoint.tw/index/ </body> <script> function demoForCopyURL(e) { event.preventDefault(); var rootText = event.target.parentElement.innerText var btnText = event.target.innerText var originalURLValue = rootText.substring(btnText.length + 1) console.log("THE URL IS=" + originalURLValue) } </script> </html>
要執行上面的程式,請儲存檔名“anyName.html(index.html)”。右鍵單擊該檔案,然後在 VSCode 編輯器中選擇“使用 Live Server 開啟”選項 -
輸出
這將在控制檯中產生以下輸出 -
在單擊按鈕後,您將在控制檯中獲得以下輸出 -
廣告