我有以下文字,用于与纽州形成一种模式。 我的行文如下:
$.modal = function(options)
{
var settings = $.extend({}, $.modal.defaults, options),
root = getModalDiv(),
// Vars for resizeFunc and moveFunc
winX = 0,
winY = 0,
contentWidth = 0,
contentHeight = 0,
mouseX = 0,
mouseY = 0,
resized, content = , contentObj;
and then later:
var buttonsFooter = false;
$.each(settings.buttons, function(key, value)
{
// Button zone
if (!buttonsFooter)
{
buttonsFooter = $( <div class="block-footer align- +settings.buttonsAlign+ "></div> ).insertAfter(contentBlockWrapper);
}
else
{
// Spacing
buttonsFooter.append( );
}
Here s the way I create the modal:
$.modal({
title: title,
closeButton: true,
content: content,
complete: function () {
applyTemplateSetup();
$($( #main-form )).updateTabs();
},
width: 900,
resizeOnLoad: true,
buttons: {
Submit : function () {
formSubmitHandler($( #main-form ));
}
}
});
我想做的是,利用这一文字来建立我与纽州联手的模式,并积极分配纽特的名字。 然而,当我尝试用单体变换代子时,它就做了一些工作。 是否有任何人想我能做什么?