新しいページを返す投稿があります。そのページには<a> link </a>
、ページが返されたときに私が呼び出す があります$( "a" ).button();
。元のページで既にこれを呼び出しているため、すべてのボタンは既に JQueryUI Button としてフォーマットされています。ただし、別の投稿を行うまで、新しいボタンはフォーマットされません。方法はありますか
$(".mapRelation")
.click(function( event ) {
var closestRow = $(this).closest("tr");
var nextRow = closestRow.next("tr");
$(this).css("display", "none");
if(nextRow.attr("id") != "map"){
$.ajax({
url: "AddTask.aspx/insertMappingRow",
type: "POST",
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function (res) {
closestRow.after(res.d);
},
error: function (res) { debugger; alert("error"); }
});
$("#effect").height("+=25");
$("#toggler").height("+=25");
}
$(".submitMapping").button();