我有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(); }); });