1

我正在使用 jQuery UI,我想在对话框中添加一个图标。该对话框工作正常,但我想添加一张图片以更具吸引力。我将不胜感激。

代码:

<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Dialog - Modal message</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<!--<link rel="stylesheet" href="/resources/demos/style.css" />!-->

<script>
$(function() {
$( "#dialog-message" ).dialog({
modal: true,
buttons: {
Ok: function() {
$( this ).dialog( "close" );
}
}
});
});
</script>
</head>
<body>
<div id="dialog-message" title="Download complete">
<p>
<!--<span class="ui-icon ui-icon-circle-check" style="float: left; margin: 0 7px 50px 0;"></span>!-->
<span style ="float: left; margin:0 7px 50px 0; width:50px; height:37px;"><img src = "img1.jpg"></span>
Your files have downloaded successfully into the My Downloads folder.
</p>
<p>
Currently using <b>36% of your storage space</b>.
</p>
</div>
<p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p>
</body>
</html>
4

2 回答 2

1

在对话框中放置任何东西并没有什么特别之处。它只是一个普通的 HTML DIV。

问题是您没有为图像使用正确的 HTML。更改此行:

<span img src = "img1.jpg" style ="float: left; margin:0 7px 50px 0; width:50px; height:50px;"></span>

至:

<span style ="float: left; margin:0 7px 50px 0; width:50px; height:50px;"><img src = "img1.jpg"></span>

img不是 a 的属性<span>,它是它自己的元素。

于 2013-09-11T21:51:26.790 回答
0

jQueryUI 的 dialog() 所做的只是 (1) 在 document.ready 上隐藏指定的 div,然后 (2) 在.dialog('open')方法(或只是 dialog({ //options go here }) 方法)时以一些花哨的 css 格式显示它叫做。

因此,如果您的 div 包含图像而没有实例化 jQUI 对话框,那么它将在使用 jQUI 对话框方法之后包含图像。

您的问题可能是语法错误,您缺少元素的右尖括号和<span>元素的左尖括号<img>。此外,您希望<span>元素的属性似乎附加到输入元素。

删除您的内联 CSS(为简单起见),这将起作用:

<span><img src = "img1.jpg"></span>
于 2013-09-11T21:54:22.120 回答