$(document).ready(function () {
$("div#banner_content").jContent({ orientation: 'vertical',
easing: "easeOutCirc",
duration: 500,
auto: true,
pause_on_hover: true,
direction: 'next'
});
});
它在另一个不使用母版页的页面上工作正常
<div id="banner_content">
<big runat="server" id="slides1"></big>
</div>
我正在从 c# 后端添加我的内容
当我在 firebug 中调试时,我在错误控制台中收到此错误,因为我的 MasterPage 上没有此类元素
注意:我所有的脚本都可以正常工作,因为我已经在另一个页面上测试了代码