我正在尝试制作要执行某些操作并关闭弹出窗口的按钮(按钮在弹出窗口中,我正在使用jquery mobile)
<div class="ui-block-b">
<a href="#popupDialog" data-rel="popup" data-position-to="window" data-role="button" data-inline="true" data-transition="pop">Feedback</a>
</div>
<div data-role="popup" id="popupDialog" data-theme="c">
<div data-role="header" data-theme="a" class="ui-corner-top">
<h1>Feedback</h1>
</div>
<div data-role="content" data-theme="d" class="ui-corner-bottom ui-content">
<h3 class="ui-title">Thank you for your participation!</h3>
<p>Some content</p>
<a href="#" data-role="button" data-inline="true" data-rel="back" data-transition="flow" data-theme="b">Cancel</a>
<input type="button" id="feedback_send" value="Send" data-inline="true" data-theme="b">
</div>
</div>
当我单击按钮时,我想将数据发送到服务器并关闭弹出窗口(我使用将数据发送到服务器的函数连接发送,但我不知道之后如何关闭弹出窗口),我试图模拟取消点击但它没有关。