Home  >  Article  >  Backend Development  >  新手

新手

WBOY
WBOYOriginal
2016-06-23 13:36:03915browse

问一个简单的问题,
我现在写一个页面,一共两个div 第一个div里面是链接和按钮,要实现点击第一个div里面的链接或者按钮,在第二个div中显示出需要的内容,请问下各位大侠都有什么好的方法,给个思路也行啊。

对了,最好不要使用框架,我见别人好像用div-css-js给实现了,不过本人水平有限,谁能给个大概的思路也万分感谢了。


回复讨论(解决方案)

第二个div中显示出需要的内容


这个‘需要的内容’太含糊了,具体是什么呢? 最好贴出你的HTML源码,举例说明。

$("#myID").load("test.php");

第二个div中显示出需要的内容


这个‘需要的内容’太含糊了,具体是什么呢? 最好贴出你的HTML源码,举例说明。
比如说带分页显示一个数据库查询的结果

$("#myID").load("test.php");


能否详解下,谢谢。

后面load大概明白了是什么意思,前面的呢???

123

234



js
$(function(){
$('#div1').click(function(){
$('#div2').html('

你想要的内容

')
})
})
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn