对于我的项目,我需要在按下按钮时弹出图像。我正在尝试使用 SimpleDialog 插件,你可以在这里看到。我在我的 HTML 中这样做
<p>This shows standard, default popup only mode.</p>
<script type="text/javascript">
$(document).delegate('#popupbut', 'click', function() {
$('<div>').simpledialog2({
mode: 'blank',
headerText: 'Some Stuff',
headerClose: true,
blankContent :
"<ul data-role='listview'><li>Some</li><li>List</li><li>Items</li></ul>"+
"<a rel='close' data-role='button' href='#'>Close</a>"
})
});
</script>
<a href="#" id="popupbut" data-role="button">Open Dialog</a>
我已经正确地包含了 JS 和 CSS。但由于某种原因,它不起作用。有人有想法吗?或者 SimpleDialog 插件的其他替代方案?
亲切的问候
------编辑------- 好的,我让它与上面的例子一起工作。但现在我只想展示一张图片。所以我在我的脚本中这样做。
$(document).delegate('#opendialog', 'click', function() {
// NOTE: The selector can be whatever you like, so long as it is an HTML element.
// If you prefer, it can be a member of the current page, or an anonymous div
// like shown.
$('<div>').simpledialog2({
mode: 'blank',
headerText: 'Some Stuff',
headerClose: true,
blankContent :
"<img src="images/schema.jpg" alt="schema" width="100" height="100" />"
})
})
但这行不通。有人可以帮忙吗?