html input的value属性怎么设置为变量 你好,能不能详细写出来?非常感谢!

你好,我是新手,菜鸟,<formaction="bankPay.php"method="post"id="submitForm"target="_blank"><inpu... 你好,我是新手,菜鸟,

<form action="bankPay.php" method="post" id="submitForm" target="_blank">
<input type="text" name="requestId" id="requestId" value=""/>
<input type="submit" value="提交" onclick="return check()" />
</form>
整个代码是这样,现在需要 id="requestId" 设置成随机字母或数字都可以,25位,每次刷新网页则自动生成,一个字符串变量,我看了你的回答,但不是很明白,你能不能详细写出来?非常感谢!
展开
 我来答
hudneorc
2015-06-18 · TA获得超过120个赞
知道答主
回答量:151
采纳率:0%
帮助的人:61.1万
展开全部
<script>
    function uuid() {
var s = [];
var hexDigits = "0123456789abcdef";
for (var i = 0; i < 25; i++) {
s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1);
}
s[14] = "4"; // bits 12-15 of the time_hi_and_version field to 0010
s[19] = hexDigits.substr((s[19] & 0x3) | 0x8, 1); // bits 6-7 of the clock_seq_hi_and_reserved to 01
s[8] = s[13] = s[18] = s[23] = "-";

var uuid = s.join("");
document.getElementsByName("requestId")[0].id=uuid;
}
</script>
<body onload="uuid()">就可以了
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式