- 浏览: 27167 次
- 来自: 上海
最新评论
文章列表
http://www.ztree.me/v3/api.php
js:
//初始化进度条
$(function(){
$("#pb1").progressBar();
});
hmtl:
<span id="pb1" class="progressBar">90%</span>
一、单个iframe 高度自适应
<iframe src="yx/yx_list.html" width="100%" onload="this.height=this.contentWindow.document.body.scrollHeight" scrolling="no" name="rtFrame" frameborder="0"></iframe>
当前窗口自适应高度:this.height=this.contentWindow.do ...
用jquery写的js, 外部应用JS无效,但是把代码贴到html中就生效了,原因:
在外部引用的js里面我直接写的:
$('#day_list').click(function(){
$('#day').show();
$('#week').hide();
$('#month').hide();
$('#sday').show();
$('#sweek').hide();
$('#smonth').show();
});
必须将其写在
$(function(){
$('#da ...