我正在使用下面的代码创建一个jQuery对话框。默认情况下,标题栏上有一个关闭图标,但我想在标题栏中添加一些其他图标以及不同的功能。
用于对话框的代码是:
$("document").ready(function () {
$("#dialog").dialog({
title: "Dialog Title",
height: 400,
width: 500
});
});
我正在使用以下.css和.js文件:
<link type="text/css" href="jquery-ui-1.7.3.custom.css" rel="stylesheet" />
<script type="text/javascript" src="jquery-1.3.2.js"></script>
<script type="text/javascript" src="jquery-ui-1.7.3.custom.min.js"></script>
答案 0 :(得分:38)
创建对话框时,可以在title
选项中定义HTML。因此,使用现有的jQuery UI图标精灵,我们可以使用这个Javascript:
您需要根据Bug #6016覆盖未记录的_title
函数,以确保不转义title
属性。
var dialog = $("#dialog").dialog();
dialog.data( "uiDialog" )._title = function(title) {
title.html( this.options.title );
};
dialog.dialog('option', 'title', '<span class="ui-icon ui-icon-home"></span> Example Dialog');
$("#dialog").dialog({
title: '<span class="ui-icon ui-icon-home"></span> Example Dialog'
});
这个CSS
.ui-dialog .ui-dialog-title .ui-icon {
float: left;
margin-right: 4px;
}
将图标添加到对话框的标题中。您可以在此处查看完整的jQuery UI图标集:http://jqueryui.com/themeroller/
要查看此功能,请查看:http://jsfiddle.net/XkSu9/(jQuery UI 1.10+)或http://www.jsfiddle.net/yijiang/UYMJH/(旧版本)
答案 1 :(得分:4)
您可以通过在打开对话框时向标题栏添加一些HTML代码来实现。
$("document").ready(function () {
$("#dialog").dialog({
title: "Dialog Title",
height: 400,
width: 500,
open: function(event, ui){
$(this).parent().find('.ui-dialog-titlebar').append('Some HTML');
}
});
});
答案 2 :(得分:3)
一种更简单的方法。在样式表中:
.ui-dialog .ui-dialog-title {
background-image: url('/icons/info.png');
background-repeat: no-repeat;
padding-left: 20px;
}
这适用于16x16图像。
答案 3 :(得分:3)
以下是全局解决jQuery UI 1.10.0对话框标题问题的方法,而不是一次解决一个对象:
jQuery.widget('ui.dialog', jQuery.extend({}, jQuery.ui.dialog.prototype, {
_title: function(titleBar) {
titleBar.html(this.options.title || ' ');
}
}));
现在像往常一样使用对话框小部件,你的标题将不再被转义。
答案 4 :(得分:2)
我是这样做的:
<script type="text/javascript" language="javascript">
function MsgBox() {
var arg = arguments;
/*
[arg]
0 = message
1 = title
2 = width
3 = height
4 = command to evaluete if Ok is clicked (optional)
*/
$("body").append("<div id=\"dlgMsg\" title=\"" + arg[1] + "\">" + arg[0] + "</div>");
$("#dlgMsg").dialog({
autoOpen: false,
modal: true,
bgiframe: true,
width: arg[2],
height: arg[3],
close: function (event, ui) { $(this).dialog("destroy").remove(); },
buttons:{
'OK': function () { if (arg[4]) eval(arg[4]); $(this).dialog("close"); }
}
});
$("#dlgMsg").dialog('open');
return false;
}
</script>
使用方法:
MsgBox("Hello, I'm a MessageBox!", "Title Here", 400, 200);
或者
MsgBox("Hello, I'm a MessageBox!", "Title Here", 400, 200, "alert('hey, you clicked Ok!')");
您也可以使用ui-icons改进它......