日期:2014-05-17 浏览次数:20413 次
$(".titleBack").each(function () {
$(this).bind("click", function () {
var titleId = $(this).attr('id');
$.ajax({
type: "post",
url: "../CallingPage/titleBackColorCalling.aspx?iTitle='" + titleId + "'",
data: null,
datatype: "json"
});
});
});
$(".format").each(function () {
$(this).bind("click", function () {
var formatId = $(this).attr('id');
$.ajax({
type: "post",
url: "../CallingPage/reviseFormatCalling.aspx?formatName='" + formatId + "'",
data: null,
datatype: "json"
});
});
});