关于遍历赋值的问题?

发布于 2022-09-06 20:45:34 字数 875 浏览 15 评论 0

<table>
    <tr>
        <td>姓名</td>
        <td>
            <input type="text">
        </td>
    </tr>
    <tr>
        <td>年龄</td>
        <td>
            <input type="text">
        </td>
    </tr>
    <tr>
        <td>性别</td>
        <td>
            <label for="male">男
                <input type="radio" name="sex" id="male">
            </label>
            <label for="famle">女
                <input type="radio" name="sex" id="famle">
            </label>
        </td>
    </tr>
    <tr>
        <td>出生日期</td>
        <td>
            <input type="text">
        </td>
    </tr>

需求:现在遍历到其他列表的值为 张三、16、男、1991。如何分别赋值给上面这个结构呢?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

最美不过初阳 2022-09-13 20:45:34

已经解决,通过对索引判断从而达到分别赋值!

甜心小果奶 2022-09-13 20:45:34

inputid 啊,然后通过动态 id 取元素赋值就好了呗

忘东忘西忘不掉你 2022-09-13 20:45:34
let name = '张三'
let age = 16
let sex = '男'
let birth = 1991

document.getElementById("name").value = name;
document.getElementById("age").value = age;
if(sex == '男'){
    document.getElementById("male").checked = true;
}else{
    document.getElementById("famle").checked = true;
}
document.getElementById("birth").value = birth;
翻身的咸鱼 2022-09-13 20:45:34

建议你用vue框架 很好遍历

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文