重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
其实用这种硬编码不能完全屏蔽,在IE工具条中的查看里,有一个选项,源文件。点击这个就能看,我感觉除了要屏蔽右键,还要在浏览器上做文章,感觉挺困难.
十年的武川网站建设经验,针对设计、前端、开发、售后、文案、推广等六对一服务,响应快,48小时及时工作处理。成都全网营销的优势是能够根据用户设备显示端的尺寸不同,自动调整武川建站的显示方式,使网站能够适用不同显示终端,在浏览器中调整网站的宽度,无论在任何一种浏览器上浏览网站,都能展现优雅布局与设计,从而大程度地提升浏览体验。成都创新互联公司从事“武川网站设计”,“武川网站推广”以来,每个客户项目都认真落实执行。
HTML
HEAD
SCRIPT LANGUAGE="JavaScript"
!--
var show_Interval = null;
var hide_Interval = null;
var long_Interval = null;
var short_Interval = null;
function $(id){
return document.getElementById(id);
}
function showDiv(id){
clearInterval(hide_Interval)
show_Interval=setInterval("showDivSlow(\""+id+"\")", 100);
}
function showDivSlow(id){
if($(id).style.display=="none"){
$(id).style.display="block";
}
var opacity=$(id).filters.alpha.opacity;
if(opacity==100){
clearInterval(show_Interval)
}else{
$(id).filters.alpha.opacity=opacity+5;
}
}
function longDiv(id){
clearInterval(short_Interval)
long_Interval=setInterval("longDivSlow(\""+id+"\")", 100);
}
function longDivSlow(id){
var height=$(id).style.height;
height=parseInt(height.substr(0,height.length-2));
if(height==500){
clearInterval(long_Interval)
}else{
$(id).style.height=(height+5)+'px';
}
}
function shortDiv(id){
clearInterval(long_Interval)
short_Interval=setInterval("shortDivSlow(\""+id+"\")", 100);
}
function shortDivSlow(id){
var height=$(id).style.height;
height=parseInt(height.substr(0,height.length-2));
if(height==0){
clearInterval(short_Interval)
}else{
$(id).style.height=(height-5)+'px';
}
}
function hideDiv(id){
clearInterval(show_Interval)
hide_Interval=setInterval("hideDivSlow(\""+id+"\")", 100);
}
function hideDivSlow(id){
var opacity=$(id).filters.alpha.opacity;
if(opacity==0){
$(id).style.display="none";
clearInterval(hide_Interval)
}else{
$(id).filters.alpha.opacity=opacity-5;
}
}
//--
/SCRIPT
/HEAD
BODY
button onclick="showDiv(1)"showDiv/button
button onclick="hideDiv(1)"hideDiv/button
button onclick="longDiv(1)"longDiv/button
button onclick="shortDiv(1)"shortDiv/button
div id="1" style="background-color:'red';width:400px;height:400px;filter:alpha(opacity=50);"div
/BODY
/HTML
补充:div必须支持滤镜,是IE才可以
补充2:不给分那我要哭了
在 eclipse 显示文本内容的左边框 右键 folding -enable folding
可以隐藏/展开 方法、注释等
是网页编程还是awt这块的?网页很简单,div有个样式为display,当设为none的时候就是隐藏了,为block为显示。如果是awt这块,我不是很清楚,自己去查下API看看Button有没remove或replace这种方法,再把Text添加进去
这是ide的功能,你想知道ide是怎么做的?而且这个隐藏要有具体情况的吧,比如说方法体和import的逻辑明显就不一样。做法的法,word的文字处理功能比这个都要负责多了,
eclipse显示被隐藏的文件或文件夹
点击左边导航(Navigator或者PackageExplorer等)右上角的小三角 - Filters
点击需要显示文件,让复选框处于非选中状态。