javascript 控制 DIV等html元素的显示和隐藏
1
、编写
js
函数
<script
type="text/javascript">
function display(id){
var
traget=document.getElementById(id);
if(traget.style.display=="none"){
traget.style.display="";
}else{
traget.style.display="none";
}
}
</script>
2.、
要显示
/
隐藏的
html
元素加上
id
属性
<table>
<tr id="menu"
>
<td>
控制这个
tr
的显示
/
隐藏
</td>
</tr>
</table>
3
、添加按钮,链接等触发
js
函数
<input type="button"
onclick="display(
'menu'
)"
value="
显示
/
隐藏
"/>
<a href="#"
onclick="display(
'menu'
)"
>
显示
/
隐藏
</a>
javascript
显示隐藏层
<div id=""
style="display:none;">
广告
</div>
<input type="botton"
onclick="
函数
">
<script
language=javascript>
function
函数
{
if(thisdiv.style.display=='none'){
thisdiv.style.display=""
}
else
thisdiv.style.display="none"
}
</script>
你先给
div
取个
ID=“AA”thisdiv=AA
javascript
隐藏
/
显示表单对象
<SCRIPT
language=javascript>
function expandIt(el) {
whichEl
=document.getElementById(el)
if (whichEl.style.display == 'none')
{
&nbs
相关文档:
// 下面代码块实现了string.parseJSON方法
(function(s){
// This prototype has been released into the Public Domain, 2007-03-20
// Original Authorship: Douglas Crockford
// Originating Website: http://www.JSON.org
// Originating URL : http://www.JSON.o ......
1. document.write( " "); 输出语句
2.JS中的注释为//
3.传统的HTML文档顺序是:document- >html- >(head,body)
4.一个浏览器窗口中的DOM顺序是:window- >(navigator,screen,history,location,document)
5.得到表单中元素的名称和值:document.getElementB ......
<SCRIPT LANGUAGE="JavaScript">
var strDate1 = "2003-06-17";
var strDate2 = "2004-09-18";
//var strDate1 = "2003-06-17 03:03:40.0";
//var strDate2 = "2004-09-18 12:03:12.0" ......
创建一个Winform用户控件 UserControl1
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Reflection;
namespace MyActiveT ......
1. oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键
<table border oncontextmenu=return(false)><td>no</table> 可用于Table
2. <body onselectstart="return false"> 取消选取、防止复制
3. onpaste="return false" 不准粘贴
4. oncopy="return false;" oncut="retu ......