我在 asp.net MVC4 项目中使用 JQuery 1.9.1 和 JQuery UI 1.10.2。我已经从 NuGet Tool 下载了所有这些 JS 和 Css。我在框中缺少 JQuery 对话框“X”图像。如何在对话框中获得它?
像这样的项目文件夹结构。
Project
|
|-Content
| |
| |-Themes
| |
| |- Base
| |
| |-Images
| |
| JQuery.UI.* Files
| ---
| ----
|
|
|-Scripts
|
JQuery-1.9.1.JS All Files
JQuery-UI-1.10.2.JS All Files
当我搜索 JQuery-UI-1.10.2.js 时,我发现下面的代码插入图像。
this.uiDialogTitlebarClose = $("<button></button>")
.button({
label: this.options.closeText,
icons: {
primary: "ui-icon-closethick" //This Image
},
text: false
})
.addClass("ui-dialog-titlebar-close")
.appendTo( this.uiDialogTitlebar );
this._on( this.uiDialogTitlebarClose, {
click: function( event ) {
event.preventDefault();
this.close( event );
}
});
我不知道那个图像文件在哪里。我只有以下来自 JQuery UI 的图像文件。