首页 > 代码库 > MVC 随记

MVC 随记

2014-09-04

[1] Json

var contact = new Object();contact.firstname = "Jesper";contact.surname = "Aaberg";contact.phone = ["555-0100", "555-0120"];var memberfilter = new Array();memberfilter[0] = "surname";memberfilter[1] = "phone";var jsonText = JSON.stringify(contact, memberfilter, "\t");document.write(jsonText);

JSON.stringify IE8、IE9不兼容,解决方法


[2] popup

 

$.ajaxSetup({ cache: false });

$(document).ready(function () {
$(".openDialog").live("click", function (e) {
e.preventDefault();

$("<div></div>")
.addClass("dialog")
.attr("id", $(this)
.attr("data-dialog-id"))
.appendTo("body")
.dialog({
title: $(this).attr("data-dialog-title"),
close: function () { $(this).remove(); },
modal: true,
height: 250,
width: 400,
left: 0

})
.load(this.href);
});

$(".close").live("click", function (e) {
e.preventDefault();
$(this).closest(".dialog").dialog("close");
});
});

-------------------------------------

<%: Html.ActionLink("Detail~~", "Detail",
new { code=item.Name },
new { @class = "openDialog", data_dialog_id = "aboutlDialog", data_dialog_title = "About Us"}
)%>

MVC 随记