在asp.net 4.0中使用jquery加载内容页面
我是 jquery 的初学者,我需要使用 jquery 水平手风琴菜单,我找到了一些代码,但我无法在 ASP.NET 4.0 的母版页和内容页中使用它们。我如何在asp.net母版页和内容页中定义jquery方法...这是我想在我的页面中使用的jquery示例...
contentpage header
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="slidemenu.css" rel="stylesheet" type="text/css" />
<script src="slidemenu.js" type="text/javascript"></script>
endcontent header
maincontent
<script type="text/javascript">
$('#MainContent').load(Function(){
slideMenu.build('sm',200,10,10,1);
});
</script>
的ul和li标签
这里是带有i endmaincontent
im beginner in jquery, i need to horizontal accordion menu by using jquery, i found couple of code but i cant use them within master page and content page in asp.net 4.0. how can i define jquery method in asp.net masterpage and content page....here is the jquery sample i wanna use in my page...
contentpage header
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="slidemenu.css" rel="stylesheet" type="text/css" />
<script src="slidemenu.js" type="text/javascript"></script>
endcontent header
maincontent
<script type="text/javascript">
$('#MainContent').load(Function(){
slideMenu.build('sm',200,10,10,1);
});
</script>
here is ul and li tags withi
endmaincontent
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了确保 DOM 层次结构已完全构建并且 #MainContent 元素存在,请在 $(document).ready 函数中调用所需的 jQuery 脚本:
.ready() - jQuery API
To ensure that the DOM hierarchy is fully constructed and the #MainContent element exists, call the required jQuery script within the $(document).ready function:
.ready() - jQuery API
尝试将脚本标签移动到您的内容页面中。
try moving the script tag into your content page.