我想在出现错误时出现一个对话框,但我不知道该怎么做。我希望代码出现在下面的代码中。因此,当调用此函数时,会出现一个弹出对话框。
.fail(function(){
alert("$.get failed!"); //replace with failed dialog
})
});
答案 0 :(得分:8)
所以我猜这就是你在说什么。
http://api.jquerymobile.com/popup/
将它嵌入你的html中。
<div data-role="popup" id="popupCloseLeft" class="ui-content" style="max-width:280px">
<a href="#" data-rel="back" data-role="button" data-theme="a" data-icon="delete" data-iconpos="notext" class="ui-btn-left">Close</a>
<p>I have a close button at the top left corner with simple HTML markup.</p>
</div>
然后在你的失败函数中调用它。
$( "#popupCloseLeft" ).popup("open");