我正在关注使用jquery mobile创建对话框的http://dev.jtsage.com/jQM-SimpleDialog/demos/string.html
链接
我在我的html中定义了以下内容
<div data-role="popup" id="Savepopup" class="ui-corner-all" style="background: url(Image/PopupBackground.png); background-size: 100% 100%;background-repeat: no-repeat;">
<div id="datalink">
<a href="#" data-inline="true" data-rel="dialog" ><img src="Image/Button.png" width="100%" height="" ></a>
</div>
</div>
and in js file i have defined the following
$(document).delegate('#datalink', 'click', function() {
$(this).simpledialog({
'mode' : 'string',
'prompt' : 'What do you say?',
'buttons' : {
'OK': {
click: function () {
// var name = text($('#datalink').attr('data-string'));
//console.log("name name "+name);
alert("data was entered");
}
},
'Cancel': {
click: function () { },
icon: "delete",
theme: "c"
}
}
});
});
但是当我点击按钮打开对话框时,我收到错误说$(this).simpledialog不是一个函数。 我在做什么错误?...
答案 0 :(得分:0)
我希望您已初始化 jQM-SimpleDialog js 文件,因为这是第三方对话框实现,并且无法在经典的jQuery Mobile框架中找到。
如果您只需要使用基本对话框,那么我建议您使用普通的jQM dialog 。
基本上你的错误是说找不到simpledialog函数,那是因为它没有被初始化。
我为经典的jQM对话框做了一个工作示例:http://jsfiddle.net/Gajotres/Jx9xM/
$(document).on('pageinit', '#mainPage', function(){
$(document).on ('click','#createEvent', function () {
$.mobile.changePage('#addCatForm', {
transition: 'pop',
changeHash: true,
role: 'dialog'
});
});
$(document).on('click','#canCat',function () {
$('#addCatForm').dialog('close');
});
});