作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在jQuery中使用定期更新程序来定期更新聊天div。因此,我在布局文件中包括了jQuery库:
<g:javascript library="jquery" plugin="jquery"/>
<g:javascript src="jquery.periodicalupdater.js"/>
<script type="text/javascript">
$(document).ready(function() {
$.PeriodicalUpdater({
url : 'URL'
}, function(data) {
var myHtml = 'The data returned from the server was: ' + data + '';
});
});
</script>
'undefined' is not a function (evaluating '$.PeriodicalUpdater')
<g:javascript library="jquery" /><script type="text/javascript">
$(document).ready(function() {
$.PeriodicalUpdater({url : 'http://localhost:8080/PROJECT/comment/ajax_list/1'},
function(data){$('#comment').empty().append(data);});
});
</script>
最佳答案
在我的布局文件中,我具有以下内容:
<script>
contextPath = "${request.contextPath}";
</script>
<script type="text/javascript">
$(document).ready(function() {
$.PeriodicalUpdater({url : contextPath + '/comment/ajax_list/1'},
function(data){$('#comment').empty().append(data);});
});
</script>
关于jquery - Grails JQuery PeriodicUpdater,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13031196/
我想在jQuery中使用定期更新程序来定期更新聊天div。因此,我在布局文件中包括了jQuery库: 我从http://www.360innovate.co.uk/blog/2009/03/peri
我正在尝试使用 jQuery 在我的 Rails 3 应用程序中创建一个 AJAX 消息流。该应用程序显示帖子和对帖子的回复。现在它需要用户刷新浏览器来更新: //in app/views/posts
我是一名优秀的程序员,十分优秀!