div 怎么用jquery嵌入页面"chart.jsp" <div> 中间这块怎么写啊 求助 </div>
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了div 怎么用jquery嵌入页面"chart.jsp" <div> 中间这块怎么写啊 求助 </div>相关的知识,希望对你有一定的参考价值。
参考技术A 我想知道你是要弹层 还是要跟原页面一起显示呀? 要是弹层 用artDialog 这个js控件 挺不错的 要是 和原页面一起显示用iframe呀 嵌套显示弹层:$.dialog.open(‘chart.jsp',
window:'top',
width: '100em',
height: 400,
title:'业务统计详细',
border:false,
lock: true,
left:'center',
content:'',
yesText:'返回',
yesFn: function()
return true;
); 参考技术B $.ajax(
url: "test.html",
cache: false,
success: function(html)
$("#results").append(html);
); 参考技术C $.ajax(
type: "POST",
url: "chart.php",
data: "name=John&location=Boston",
success: function(msg)
$("#yourdiv").html(msg);
);本回答被提问者采纳
怎么将ajax返回的数据显示在jsp页面上
推荐使用jquery: 在你的ajax回调函数中这样写: success:function(data) var $data = $(data) //将整个文档转化为jquery对象 var target_div = $data.find("#div_id"); //获取到你要显示的div // 将这个div显示 $("body").append(target_div);... 参考技术A <script type="text/javascript">$(function()
$('.product-hover a').click(function()
var newurl=$(this).attr("href");
$.ajax(
url: newurl,
type: 'GET',
data: ,
success: function (data)
$("#cc").text(data.coun);
$("#ss").text(data.gwintegral);
,
error: function (xhr) alert('服务器出错,返回内容:' + xhr.responseText)
);
return false;
);
);
</script><div class="shopping-item">
<a href="cart.html">消费积分 - <span class="cart-amunt" id="ss"></span> <i class="fa fa-shopping-cart"></i> <span class="product-count" id="cc"></span></a>
</div>
我找了一上午 原来是.text 唉
以上是关于div 怎么用jquery嵌入页面"chart.jsp" <div> 中间这块怎么写啊 求助 </div>的主要内容,如果未能解决你的问题,请参考以下文章