gpt4 book ai didi

jquery - 每次使用 jQuery 单击同一个按钮时,可以加载随机文件吗?

转载 作者:行者123 更新时间:2023-12-01 00:54:34 25 4
gpt4 key购买 nike

我有 4 个联系表格,我们想轮换进行测试。我不想在单独的事件中运行这些事件,对于这样一个简单的事情来说它就太过分了。是否可以有一组 4 个表单,并在每次单击按钮时随机加载它们(不同的表单)?

$(function() {
$("a.random")click.(function){
//?
});
});

最佳答案

是的。

<form id="form0" class="test_form">
<form id="form1" class="test_form" style="display: none;">
<form id="form2" class="test_form" style="display: none;">
<form id="form3" class="test_form" style="display: none;">
<小时/>
$(function() {
$("a.random")click.(function){
$(".test_form").hide();
var formNumber = Math.floor(Math.random() * 4);//will equal a number between 0 and 3
$("#form" + formNumber).show();
});
});

关于jquery - 每次使用 jQuery 单击同一个按钮时,可以加载随机文件吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4337630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com