温暖的怀抱评论的话题
温暖的怀抱 5个月前 评论了 纸上得来终觉浅 创建的话题 › 最近好无聊,来这里寻找人聊聊天

想看您分享一些社会经验。

温暖的怀抱 5个月前 评论了 行色匆匆 创建的话题 › 我来试试在社区的网页版发帖

我刚才试了一下,天坦这边无法显示,您去浏览器就知道结果了。

温暖的怀抱 5个月前 评论了 行色匆匆 创建的话题 › 我来试试在社区的网页版发帖

您确定吗?那我试一下一段html5代码。

场控申请表
<h1>场控申请表</h1>
<p>为了使申请具有合法合规性,请填写这份表单。</p>

<p>1.你是?(单选)</p>
<label><input type="radio" name="role" value="申请人"> A:申请人</label><br>
<label><input type="radio" name="role" value="代申请人"> B:代申请人</label><br>
<label><input type="radio" name="role" value="总负责人"> C:总负责人</label><br>
<label><input type="radio" name="role" value="老师"> D:老师</label><br>
<label><input type="radio" name="role" value="其他"> E:其他(请注明)</label><br>
<input type="text" id="otherRole" maxlength="15" name="otherRole" placeholder="请注明,15字以内" style="display: none;">
<script>
    document.querySelectorAll('input[name="role"]').forEach(radio => {
        radio.addEventListener('change', function() {
            document.getElementById('otherRole').style.display = this.value === '其他' ? 'block' : 'none';
        });
    });
</script>

<label for="id">2.你的ID是?(必填)</label>
<input type="text" id="id" maxlength="15" name="id" placeholder="请输入你的ID,15字以内" required>

<p>3.你所在的班级是?(必填)</p>
<label><input type="radio" name="class" value="所在班级"> A:所在班级</label><br>
<label><input type="radio" name="class" value="所授班级"> B:所授班级</label><br>
<label><input type="radio" name="class" value="无"> C:无</label><br>

<p>4.你需要的设备(多选)【最少选择1项】</p>
<label><input type="checkbox" name="equipment" value="音乐播放类"> A:音乐播放类(音箱、声卡、U盘、读卡器等)</label><br>
<label><input type="checkbox" name="equipment" value="提醒和播放音效类"> B:提醒和播放音效类(高音喇叭、麦克风等)</label><br>
<label><input type="checkbox" name="equipment" value="乐器类"> C:乐器类(陶笛、竖笛、竹笛、吉他等)</label><br>
<label><input type="checkbox" name="equipment" value="其他"> D:其他(请注明)</label><br>
<input type="text" id="otherEquipment" maxlength="50" name="otherEquipment" placeholder="请注明,50字以内" style="display: none;">
<label><input type="checkbox" name="equipment" value="无"> E:无</label><br>
<script>
    document.querySelectorAll('input[name="equipment"]').forEach(checkbox => {
        checkbox.addEventListener('change', function() {
            document.getElementById('otherEquipment').style.display = this.value === '其他' && this.checked ? 'block' : 'none';
        });
    });
</script>

<label for="date">5.场控日期(十二位日期数,年四位月两位日两位点两位分两位)</label>
<input type="number" id="date" maxlength="13" name="date" placeholder="请输入场控日期,格式:YYYYMMDD HHMM" required>

<label for="duration">6.场控时长(单位:分)</label>
<input type="number" id="duration" name="duration" placeholder="请输入场控时长" required>

<p>7.场控类型</p>
<label><input type="radio" name="controlType" value="律动"> A:律动</label><br>
<label><input type="radio" name="controlType" value="标准"> B:标准</label><br>
<label><input type="radio" name="controlType" value="其他"> C:其他(请注明)</label><br>
<input type="text" id="otherControlType" maxlength="15" name="otherControlType" placeholder="请注明,15字以内" style="display: none;">
<script>
    document.querySelectorAll('input[name="controlType"]').forEach(radio => {
        radio.addEventListener('change', function() {
            document.getElementById('otherControlType').style.display = this.value === '其他' ? 'block' : 'none';
        });
    });
</script>

<label for="theme">8.场控主题</label>
<input type="text" id="theme" name="theme" placeholder="请输入场控主题">

<label for="content">9.场控大致内容</label>
<textarea id="content" name="content" rows="4" placeholder="请输入场控大致内容"></textarea>

<button onclick="submitForm()">提交</button>

<script>
    function submitForm() {
        const role = document.querySelector('input[name="role"]:checked') ? document.querySelector('input[name="role"]:checked').value : '';
        const otherRole = document.getElementById('otherRole').value;
        const id = document.getElementById('id').value;
        const classType = document.querySelector('input[name="class"]:checked') ? document.querySelector('input[name="class"]:checked').value : '';
        const equipment = Array.from(document.querySelectorAll('input[name="equipment"]:checked')).map(el => el.value);
        const otherEquipment = document.getElementById('otherEquipment').value;
        const date = document.getElementById('date').value;
        const duration = document.getElementById('duration').value;
        const controlType = document.querySelector('input[name="controlType"]:checked') ? document.querySelector('input[name="controlType"]:checked').value : '';
        const otherControlType = document.getElementById('otherControlType').value;
        const theme = document.getElementById('theme').value;
        const content = document.getElementById('content').value;

        const result = `明眼人截图,视障者使用读屏提供的复制功能。1. 你是:${role === '其他' ? otherRole : role}\n2. 你的ID是:${id}\n3. 你所在的班级是:${classType}\n4. 你需要的设备:${equipment.join(', ')}${otherEquipment ? ' (' + otherEquipment + ')' : ''}\n5. 场控日期:${date}\n6. 场控时长:${duration} 分钟\n7. 场控类型:${controlType === '其他' ? otherControlType : controlType}\n8. 场控主题:${theme}\n9. 场控大致内容:${content}\n\n复制并粘贴到QQ号为3032013220的用户发送即可通过,如您有问卷发布者的其他联系方式,发送至这些联系方式也可通过。`;

        alert(result);
        navigator.clipboard.writeText(result).then(() => {
            alert("内容还未复制,请重新点击提交按钮,其实我在刚才就提示你了,只是你没看见。");
        });
    }
</script>
温暖的怀抱 5个月前 评论了 行色匆匆 创建的话题 › 我来试试在社区的网页版发帖

告诉您这个功能是html5,如果你把html5代码粘贴进去,说不定有一大半都会变成html,比如你粘贴一个有序列表的html代码,它就会变成一个有序列表的形式,看上去就像有序列表。

温暖的怀抱 5个月前 评论了 温暖的怀抱 创建的话题 › 刚才看消息列表的时候,发现了一条系统通知,满脸懵逼的点开看。

应该不算是借用,因为这个账号本来就是我从我同学那里拿过来的,我同学应该会用吧。

温暖的怀抱 5个月前 评论了 用户150612 创建的话题 › 问一个微信的问题和找一个能倒放音频和视频的应用。

社区搜索一下,我之前发的帖子好像有发过如何分割音乐和拼接音乐的教程,那里面就有音乐速度调节器。

温暖的怀抱 5个月前 评论了 温暖的怀抱 创建的话题 › 刚才看消息列表的时候,发现了一条系统通知,满脸懵逼的点开看。

嗯,明白,不过那个时候我还没上来呢,一般工作日的话,我都是下午5点过后才会上来。

温暖的怀抱 5个月前 评论了 lpy 创建的话题 › 想问一下在电脑上录制,如何实现只录制电脑本身,不录制外部的声音

还是用声卡录好一些,不想要外部声音,直接把麦克风音量调到零就行。

温暖的怀抱 5个月前 评论了 熹檬 创建的话题 › 现在,你可以有机会拥有一台属于自己的盲文打印机,千万别错过!

得有windows才行啊。

温暖的怀抱 5个月前 评论了 白叶umi 创建的话题 › 当安卓有了苹果的流畅和墓碑是种什么样的体验?

反正这个国外版本不好获得就对了。

温暖的怀抱 5个月前 评论了 白叶umi 创建的话题 › 当安卓有了苹果的流畅和墓碑是种什么样的体验?

嗯,好的。

温暖的怀抱 5个月前 评论了 白叶umi 创建的话题 › 当安卓有了苹果的流畅和墓碑是种什么样的体验?

不知道开了魔法的推送有什么用,你关了魔法还是用不了啊,不过能问一下你这weChat在哪下载吗?请提供一个链接,我这边无法访问谷歌play

温暖的怀抱 5个月前 评论了 寒雪落花静云月 创建的话题 › 掌上星工1.0.1,一个小巧工具箱。

建议:1.局域网快传在我要发文件处增加选择一个文件,而不是输入路径,这样新用户或者动手能力差的用户也能使用。
1.1.知识路径编辑框中输入多个路径,用;分隔。
1.2.如果有选择一个文件,支持选择多个文件。

温暖的怀抱 5个月前 评论了 温暖的怀抱 创建的话题 › 一个树洞帖。

这不废话吗?已故亲人的手机留给我的感情能不深吗?

温暖的怀抱 5个月前 评论了 彩虹叔叔 创建的话题 › 请问一下朋友们 小毛毯的问题 有些验证码 比较复杂的 该怎么操作呢 登录软件的时候

你直接点击积分给积分充值就行了,充多少都行,最低一元。

温暖的怀抱 5个月前 评论了 彩虹叔叔 创建的话题 › 请问一下朋友们 小毛毯的问题 有些验证码 比较复杂的 该怎么操作呢 登录软件的时候

你说你会员付了款,但是你没负积分的款呢?

温暖的怀抱 5个月前 评论了 温暖的怀抱 创建的话题 › 一个树洞帖。

好吧,明白了。

温暖的怀抱 5个月前 评论了 温暖的怀抱 创建的话题 › 一个树洞帖。

所以你这么一说,我就感觉很无语啊,唉心里还是惦记着那台手机,可是你说的又很对。

温暖的怀抱 5个月前 评论了 温暖的怀抱 创建的话题 › 一起来欣赏这个超级震撼的诗词华夏之魂

很抱歉,有其他人登录了我的账号,如果没有看到ID请误认为是小毛毛。

温暖的怀抱 5个月前 评论了 改昵称 创建的话题 › 谁能给我一下,没望山河的下载链接。

当然是x个人啦。