3
我一直在嘗試使用遵循滾動到與移動用戶滾動一起對話框,但沒有成功如何滾動流JQuery用戶界面對話框
<script>
$(function() {
$("#dialog:ui-dialog").dialog("destroy");
$("#dialog-report-problem-form").dialog({
autoOpen: true,
height: 550,
width: 700,
modal: true,
buttons: {
"<?= $this->translate('REPORT_PROBLEM'); ?>": function() {
reportProblem();
},
"<?= $this->translate('CANCEL'); ?>": function() {
$(this).dialog("close");
}
},
close: function() {
}
});
$.scrollFollow("#dialog-report-problem-form",{speed: 10});
});
</script>
。
<div id="dialog-report-problem-form" title="<?= $this->translate('REPORT_PROBLEM'); ?>">
<?= $this->form ?>
</div>
我已經收到了錯誤
box.cont.offset() is null
有誰知道怎麼能解決或其他基於jQuery的解決方案來跟蹤用戶滾動?
嗨,我看到你的工作示例,但是當我插入到我的模板中時,它總是停下來。看http://yourlnk.com/67轉到頁腳並單擊報告問題 – dextervip 2012-01-16 17:37:59
看起來像對話框的大小和窗口高度影響 – dextervip 2012-01-17 05:52:07
我看到您加載腳本以及對話框內容,因此無法調試它並且檢查可能是什麼問題。你可以把它放在'$(「#report-problem」)。html(html);''後面的'script.js'中嗎? – 2012-01-17 06:37:30