我正在构建一个 jQuery 函数,允许用户向表单添加其他字段。该表格有四个按钮,用于不同的捐赠值。当您单击一个时,它会生成适当的表单字段,并添加一个额外捐赠的选项。
出于某种原因,额外的捐赠按钮不起作用。按钮的代码完全相同,所以这对我来说毫无意义。
这是HTML:
<h6>Donation Information</h6>
<p>
<a class="button" data-value="500" href="#" style="margin-right:2px;">5" – $500</a>
<a class="button" data-value="250" href="#" style="margin-right:2px;">4" – $250</a>
<a class="button" data-value="100" href="#" style="margin-right:2px;">3" – $100</a>
<a class="button" data-value="50" href="#" style="padding-right:13px;">2.5" – $50</a>
</p>
<div id="donationTarget"></div>
这是jQuery:
$(".button").click(function(e) {
e.preventDefault();
if ($(this).hasClass("clicked")) {
// do nothing
} else if ($(this).hasClass("disabled")) {
// do nothing
} else {
$(this).addClass("clicked");
$(".button:not(.clicked)").addClass("disabled");
var counter = $(".donation").length;
var amount = $(this).attr("data-value");
if (amount == 500) {
var size = 5;
} else if (amount == 250) {
var size = 4;
} else if (amount == 100) {
var size = 3;
} else if (amount == 50) {
var size = 2.5;
}
$("#donationTarget").before("<div class=\"donation\"><input maxlength=\"60\" name=\"inscription" + counter + "\" placeholder=\"Inscription (60 character maximum)\" type=\"text\" /><p><strong>Color Preference (subject to availability):</strong></p><div class=\"half\"><input id=\"color-blue" + counter + "\" type=\"radio\" name=\"color" + counter + "\" /><label for=\"color-blue" + counter + "\">Blue</label><div style=\"clear:both;\"></div><input id=\"color-orange" + counter + "\" type=\"radio\" name=\"color" + counter + "\" /><label for=\"color-orange" + counter + "\">Orange</label><div style=\"clear:both;\"></div><input id=\"color-red" + counter + "\" type=\"radio\" name=\"color" + counter + "\" /><label for=\"color-red" + counter + "\">Red</label><div style=\"clear:both;\"></div></div><!--/.half--><div class=\"half\"><input id=\"color-yellow" + counter + "\" type=\"radio\" name=\"color" + counter + "\" /><label for=\"color-yellow" + counter + "\">Yellow</label><div style=\"clear:both;\"></div><input id=\"color-green" + counter + "\" type=\"radio\" name=\"color" + counter + "\" /><label for=\"color-green" + counter + "\">Green</label><div style=\"clear:both;\"></div></div><!--/.half--><div style=\"clear:both;\"></div></div><br /><h6>Additional Donation</h6><p><a class=\"button\" data-value=\"500\" href=\"#\" style=\"margin-right:2px;\">5\" – $500</a><a class=\"button\" data-value=\"250\" href=\"#\" style=\"margin-right:2px;\">4\" – $250</a><a class=\"button\" data-value=\"100\" href=\"#\" style=\"margin-right:2px;\">3\" – $100</a><a class=\"button\" data-value=\"50\" href=\"#\" style=\"padding-right:13px;\">2.5\" – $50</a></p>");
}
});
另外,有没有办法在函数结束时清理 jQuery 的超长行?我不知道如何在不破坏脚本的情况下将 HTML 保留在多行上。
谢谢。
jsFiddle:http: //jsfiddle.net/aptwt/2/