HTML:
<form id="frm"></form>
JS:
$(function () {
$("#frm").append('<input class="btn" type="submit" name="GoTest" value="Preview"/>');
$("#frm").append('<input class="btn" type="submit" name="GoTest1" value="Next"/>');
$("#frm > .btn").on("click", function (e) {
e.preventDefault();
if ($(this).val() == "Next") {
alert("It's button Next");
} else {
alert("It's button Preview");
}
});
});
簡略化されたコード:
$(function () {
$("#frm").append('<input class="btn" type="submit" name="GoTest" value="Preview"/>');
$("#frm").append('<input class="btn" type="submit" name="GoTest1" value="Next"/>');
$("#frm > .btn").on("click", function (e) {
e.preventDefault();
alert("It's button " + $(this).val());
});
});
$(function () {
$("#frm").append('<input class="btn" type="submit" name="GoTest" value="Preview"/>');
$("#frm").append('<input class="btn" type="submit" name="GoTest1" value="Next"/>');
$("#frm > [name^='GoTest']").on("click", function (e) {
e.preventDefault();
alert("It's button " + $(this).val());
});
});
ドキュメンテーション:
[attribute^=value]
: name 属性値が value で始まるすべての要素。
更新: child プロパティを使用するには、e.preventDefault() がhtml タグの自動POST
を停止することに注意してください。FORM