jQuery为input赋值(调⽤函数)当我们为input赋值时,有时候的赋值为函数形式。以下⽰例为为input赋值为guid。
这⾥我们需要注意:
①使⽤原⽣js和使⽤jQuery赋值的区别,原⽣js:ElementById('testId').value=guid;
②使⽤jQuery赋值时,当使⽤input的id时,如何进⾏赋值:$('#testId').val(guid);
③使⽤jQuery赋值时,当使⽤input的name时,进⾏赋值:$('input[name="testName"]').val(guid);
④记得最后调⽤函数执⾏。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="cdn.bootcdn/ajax/libs/jquery/3.6.0/jquery.js"></script>onpaste不能用input
</head>
<body>
<from>
<input type="text" id="testId" name="testName" value="">
</from>
<script>
function textGuid() {
function S4() {
return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
}
var guid = (S4() + S4() + "-" + S4() + "-" + S4() + "-" + S4() + "-" + S4() + S4() + S4());
//这⾥注意使⽤原⽣js和使⽤jQuery的区别
// ElementById('testId').value=guid;
// $('#testId').val(guid);
$('input[name="testName"]').val(guid);
}
//记得调⽤
textGuid();
</script>
</body>
</html>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论