我们有这段代码来刷新我们拥有的 DIV,包括一个请求数据的文件。当前功能运行良好,但我们需要 mootools 迁移。
JS代码:
<script>
jQuery.noConflict();
(function(jQuery) {
jQuery(function() {
jQuery(document).ready(function() {
// First initial refresh onLoad
jQuery(".wall_actions").fadeOut("fast").load("auto-refresh.php").fadeIn("fast");
// Use now with Interval - 10 seconds
var refreshId = setInterval(function() {
jQuery(".wall_actions").fadeOut("fast").load('auto-refresh.php').fadeIn("fast");
}, 5000);
jQuery.ajaxSetup({
cache: false
});
});
});
})(jQuery);
</script>
<div class="wall_actions">
<!-- other code -->
</div>
我们尝试使用此方法进行迁移,但没有成功。
<script language="javascript">
var request = new Request({
url: 'auto-refresh.php',
method: 'get',
update: 'refresh-me',
onComplete: function(response) {
$('.wall_actions').set('html',response);
}
})
var doRefresh = function() {
request.send();
};
doRefresh.periodical(5000);
</script>
自动刷新.php
<?php
$page = "auto-refresh";
include "header.php";
$actions_array = $actions->actions_display(0, $setting['setting_actions_actionsperuser']);
$smarty->assign_by_ref('actions', $actions_array);
include "footer.php";
?>
我们如何使用 jQuery 函数发出请求,但使用 MooTools?