我正在创建供员工使用的表单以生成链接。我们的网站处理付款。想法是,工作人员可以输入例如$ 23作为23.00,这会将用户带到example.com/pay/23.00
当前按下“获取链接”按钮会将用户带到付款地址。
<script>
function process()
{
var url="http://example.com/pay/" + document.getElementById("url").value;
location.href=url;
return false;
}
</script>
<script>
function myFunction() {
var copyText = document.getElementById("url");
copyText.select();
document.execCommand("copy");
alert("Copied the URL: " + copyText.value);
}
</script>
<form onSubmit="return process();">
<p>Enter the amount as a decimal:</p><br>
<input type="text" name="url" id="url"> <input type="submit" value="Get Link" id="paylink">
</form>
按get link
应该复制网址,而不是重定向。
只要我快到了,任何帮助将不胜感激。
答案 0 :(得分:0)
inf
此外,您应该进行验证。