gpt4 book ai didi

javascript - 如何将 Javascript 与 HTML 表单链接起来?

转载 作者:太空宇宙 更新时间:2023-11-04 15:12:25 25 4
gpt4 key购买 nike

嘿!

我有这段代码(只是一个例子):

function random(min, max) {
return min + parseInt(Math.random() * (max-min+1));
}
function getKey(length, charset) {
var key = "";
while(length--) {
key += charset[random(0, charset.length-1)];
}
return key;
}
$(document).ready(function() {
var key = getKey(16, "0123456789ABCDEF");
});

并希望将此 (javascript)“链接”到 input[type="submit"]-form (html)。所以,如果我点击按钮,他每次都会生成一个新的“ key ”。

你能帮我找到一个解决方案吗? :-)

最佳答案

试试这段代码

<html>
<head>
<script>
function random(min, max) {
return min + parseInt(Math.random() * (max - min + 1));
}

function getKey(length, charset) {
var key = "";
while (length--) {
key += charset[random(0, charset.length - 1)];
}
return key;
}
$(document).ready(function () {
$('#ipt').click(function () {
var key = getKey(16, "0123456789ABCDEF");
alert(key);
});
});
</script>
</head>

<body>
<input type="button" id="ipt" />
</body>
</html>

关于javascript - 如何将 Javascript 与 HTML 表单链接起来?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18422507/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com