作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我正在使用 div 内容推送 jquery 对话框。第二次打开后,我想使用与 div 相同的内容刷新对话框,而不影响我的代码。我该怎么做?请帮助我..代码如下:
Jquery 对话框代码:
$(function() {
$( "#atendeePopup" ).dialog({
autoOpen: false,
width:610,
height:680,
show: "fold",
hide: "core"
});
$('.flora.ui-dialog').css({position:"fixed"});
$( "#widgetAtendeeIcon").click(function() {
$( "#atendeePopup" ).dialog( "open" );
return false;
});
});
html代码:
<div id=""#atendeePopup" >
<p>My div content here</>
</div>
最佳答案
我假设刷新
你的意思是放回原始数据,我们在这里:
$(function () {
if ($("#atendeePopup").data('orig') == undefined) {
$("#atendeePopup").data('orig', $("#atendeePopup").html());
}
$("#atendeePopup").dialog({
autoOpen: false,
width: 610,
height: 680,
show: "fold",
hide: "core"
});
$('.flora.ui-dialog').css({
position: "fixed"
});
$("#widgetAtendeeIcon").click(function () {
if ($("#atendeePopup").data('orig') != undefined) { //update to orig
$("#atendeePopup").html($("#atendeePopup").data('orig'));
}
$("#atendeePopup").dialog("open");
return false;
});
});
关于javascript - 如何刷新jquery对话框以供下次使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5938056/
我是一名优秀的程序员,十分优秀!