需要载入的页面:http://localhost/news/?ct=question&ac=reply&id=60当前页:<div id="news"></div>JQ:
$("#news").click(function(){
    //载入指定页面到DIV中
});
各位,没积分了!救助 jQuery

解决方案 »

  1.   

    $('#news').load('http://localhost/news/?ct=question&ac=reply&id=60');
      

  2.   

    你下载一个API好好看看,看不懂再问。
      

  3.   

    var str='<iframe src="http://localhost/news/?ct=question&ac=reply&id=60" id="linkframe" name="linkframe" width="100%" frameborder="0" scrolling="no" ></iframe>'
    $("#news").append(str);
      

  4.   

    可以用jqury ajax的load方法啊 $(".class").load("test.html .class"),  第一哥参数就是获取test页面,第二个是可选的,就是可以只获取test页面中指定class内容。
      

  5.   

    $('#news').load('http://localhost/news/?ct=question&ac=reply&id=60');