同一页面点击不同按钮在相同窗口显示不同内容,求html页面案例
2个回答
展开全部
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs
/jquery/1.4.0/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#button1").click(function(){
$("#objPage").attr("src","你要显示的页面路径");
});
$("#button2").click(function(){
$("#objPage").attr("src","你要显示的页面路径");
});
});
</script>
</head>
<body>
<button id="button1"></button>
<button id="button2"></button>
<div id="objPage"></div>
</body>
</html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs
/jquery/1.4.0/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#button1").click(function(){
$("#objPage").attr("src","你要显示的页面路径");
});
$("#button2").click(function(){
$("#objPage").attr("src","你要显示的页面路径");
});
});
</script>
</head>
<body>
<button id="button1"></button>
<button id="button2"></button>
<div id="objPage"></div>
</body>
</html>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询