第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

文本區(qū)域中的隨機(jī)數(shù)生成器

文本區(qū)域中的隨機(jī)數(shù)生成器

aluckdog 2023-07-20 17:08:35
如何添加以下 JavaScript 代碼(隨機(jī)數(shù)生成器)?function randomNumber(max) {    return Math.floor(Math.random() * max + 1);}const list = []while(list.length < 25) {    let nbr = randomNumber(25)    if(!list.find(el => el === nbr))         list.push(nbr)}console.log("list",list)進(jìn)入這個(gè)文本區(qū)域并用 DOM 顯示它們?<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>Document</title></head><body>    <textarea name="" id="" cols="30" rows="10"></textarea>    <script src="app.js"></script></body></html>
查看完整描述

1 回答

?
largeQ

TA貢獻(xiàn)2039條經(jīng)驗(yàn) 獲得超8個(gè)贊

// Using an id to get the element

const textarea = document.getElementById('area');


function randomNumber(max) {

    return Math.floor(Math.random() * max + 1);

}


const list = []

while(list.length < 25 ){

    let nbr = randomNumber(25)

    if(!list.find(el => el === nbr)) 

        list.push(nbr)

}


// Set the value to the list

textarea.value = list;

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Document</title>

</head>

<body>

    <textarea name="" id="area" cols="30" rows="10"></textarea>

    <script src="app.js"></script>

</body>

</html>


查看完整回答
反對(duì) 回復(fù) 2023-07-20
  • 1 回答
  • 0 關(guān)注
  • 225 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)