隐藏显示 div,以显示模式开始
Hide show div, starting in Show mode
我正在使用 show/hide javascript 代码。
你可以在这里找到一个例子http://ledonnedelre.com/test.htm
基本上如果你点击 ?在左上角,出现一个帮助框。在你可以关闭它之后再次点击按钮。
我需要的是在您打开页面时帮助框已经打开。
我想我应该更改此代码中的某些内容
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.js"></script>
<script>
$(document).ready(function() {
$('.nav-toggle').click(function(){
//get collapse content selector
var collapse_content_selector = $(this).attr('href');
//make the collapse content to be shown or hide
var toggle_switch = $(this);
$(collapse_content_selector).toggle(function(){
if($(this).css('display')=='none'){
//change the button label to be 'Show'
toggle_switch.html('?');
}else{
//change the button label to be 'Hide'
toggle_switch.html('NASCONDI');
}
});
});
});
</script>
这是一个 CSS 问题。集
display: block;
在隐藏元素上。
我正在使用 show/hide javascript 代码。
你可以在这里找到一个例子http://ledonnedelre.com/test.htm
基本上如果你点击 ?在左上角,出现一个帮助框。在你可以关闭它之后再次点击按钮。
我需要的是在您打开页面时帮助框已经打开。
我想我应该更改此代码中的某些内容
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.js"></script>
<script>
$(document).ready(function() {
$('.nav-toggle').click(function(){
//get collapse content selector
var collapse_content_selector = $(this).attr('href');
//make the collapse content to be shown or hide
var toggle_switch = $(this);
$(collapse_content_selector).toggle(function(){
if($(this).css('display')=='none'){
//change the button label to be 'Show'
toggle_switch.html('?');
}else{
//change the button label to be 'Hide'
toggle_switch.html('NASCONDI');
}
});
});
});
</script>
这是一个 CSS 问题。集
display: block;
在隐藏元素上。