单击按钮时如何将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 xx_src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script xx_src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<body>
   <button class="copyTheURL" onclick="demoForCopyURL()">
      ClickMeToCopyURL
   </button>
   https://www.nhooo.com/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 打开”选项 -

输出结果

这将在控制台上产生以下输出 -

单击按钮后,您将在控制台上获得以下输出 -