我有一个“金色”模式窗口,在这种窗口中,我装上了装着纽子的表格。 我要补充一个“距离”的链接,以明确形式,结束人口。
我正在使用新的伙伴关系法。 NET MVC4缺省模板。 我正在寻找一份文字来开展这项工作。
这是目前用于储存和展示方言的法规:
$(function () {
// Cache for dialogs
var dialogs = {};
var loadAndShowDialog = function (id, link, url) {
var separator = url.indexOf( ? ) >= 0 ? & : ? ;
// Save an empty jQuery in our cache for now.
dialogs[id] = $();
// Load the dialog with the content=1 QueryString in order to get a PartialView
$.get(url + separator + content=1 )
.done(function (content) {
dialogs[id] = $( <div class="modal-popup"> + content + </div> )
.hide() // Hide the dialog for now so we prevent flicker
.appendTo(document.body)
.filter( div ) // Filter for the div tag only, script tags could surface
.dialog({ // Create the jQuery UI dialog
title: link.data( dialog-title ) || Inloggen ,
modal: true,
resizable: false,
draggable: false,
width: link.data( dialog-width ) || 370,
beforeClose: function () { resetForm($(this).find( form )); }
})
.find( form ) // Attach logic on forms
.submit(formSubmitHandler)
.find( a.close-dialog ).click(function (id) {
//dialog close logic here
}).end();
});
};
var links = [ .loginLink ];
$.each(links, function (i, id) {
$(id).click(function (e) {
var link = $(this),
url = link.attr( href );
if (!dialogs[id]) {
loadAndShowDialog(id, link, url);
} else {
dialogs[id].dialog( open );
}
// Prevent the normal behavior since we use a dialog
e.preventDefault();
});
});