我正在开发一个遗留应用程序,并将 jquery 从 1.6.2 升级到 1.9.1 我使用 migrate.js 来解决不推荐使用的代码。
<script src="@Url.Content("~/Scripts/jquery-1.9.1.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery-migrate-1.2.1.min.js")" type="text/javascript"></script>
下面的 javscript 会弹出一个对话框;
jQuery.fn.jDialogWrapper("Please enter the worked hours(should not be zero), for the entered the Contract Number or Description.").dialog('open');
其中函数定义如下;
jQuery.fn.jDialogWrapper = function (message) {
return $('<div class="StasDialogClass"></div>')
.html(message)
.dialog({
autoOpen: false,
dialogClass: 'StasDialogClass',
modal: true,
resizable: false,
title: 'Mulalley STAS',
buttons: {
OK: function () {
$(this).dialog('close');
}
}
});
};
显示对话框消息时,“确定”按钮中没有文本。它应该说好的。我该如何解决?