如果有人可以帮助我,我将不胜感激。我正在尝试使用 jQuery mobile 1.2 Beta(使用 jQuery 1.7.1)动态构建可折叠块。
现在我有一个问题,我想在可折叠的标题内有一个按钮,一切正常,但是当我点击按钮时,我设置的点击事件不会被触发,而是块被展开或折叠。
$('#main').append('<div data-role="collapsible" data-theme="c" data-content-theme="c" id="pflicht_'
+ identifier + '" pflichtID="' + val.guid + '">' +
'<h3 style="white-space: normal;" id="inner_header_' + identifier + '">'
+ header + ': ' + val.pflichtBezeichnung + ' (' + val.Intervall + ' - ' + val.IntModus + ') '
+ val.pflichtNummer + '.' + val.pflichtZusatz +
'<button type="button" data-inline="true" id="ok" pflichtID="'
+ val.guid + '" identifier="' + identifier + '" >Ok</button></h3>' +
'</div>'
$("#ok").live('click', function () {
alert("ok");
});
我该怎么做才能获得按钮的点击事件?
谢谢你的帮助!