尝试创建一个可以重定向到另一个URL的搜索按钮,并将重定向的URL复制到剪贴板上

时间:2017-11-25 14:24:41

标签: javascript html css forms

这是我的HTML代码:

  <input id="text" type="text" name="text">
    <input type="button" name="page1" onclick="javascript:window.open('http://example.com/' + this.name + '/' + document.getElementById('text').value)">

如果您在字段中添加任何文字并点击该按钮,它将重定向到http://example.com/page1/anytext 我正在尝试使此按钮能够重定向到URL并将其复制到剪贴板。因此,如果有任何访问者在字段上放置anytext,则会复制网址http://example.com/page1/anytext并重定向到该网址。

1 个答案:

答案 0 :(得分:0)

如下:

function myCopyFunction() {
  var copyText = document.getElementById("page1");
  copyText.select();
  document.execCommand("Copy");
  alert("Copied the text: " + copyText.value);
}