这是我的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
并重定向到该网址。
答案 0 :(得分:0)
如下:
function myCopyFunction() {
var copyText = document.getElementById("page1");
copyText.select();
document.execCommand("Copy");
alert("Copied the text: " + copyText.value);
}