惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

I
Intezer
V
Vulnerabilities – Threatpost
Google Online Security Blog
Google Online Security Blog
T
The Exploit Database - CXSecurity.com
C
CXSECURITY Database RSS Feed - CXSecurity.com
AWS News Blog
AWS News Blog
G
GRAHAM CLULEY
P
Privacy & Cybersecurity Law Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
C
Cybersecurity and Infrastructure Security Agency CISA
N
News | PayPal Newsroom
T
Tenable Blog
Spread Privacy
Spread Privacy
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
S
Secure Thoughts
P
Privacy International News Feed
IT之家
IT之家
Project Zero
Project Zero
T
The Blog of Author Tim Ferriss
Engineering at Meta
Engineering at Meta
大猫的无限游戏
大猫的无限游戏
博客园_首页
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
Hacker News: Ask HN
Hacker News: Ask HN
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
N
Netflix TechBlog - Medium
Martin Fowler
Martin Fowler
NISL@THU
NISL@THU
I
InfoQ
D
DataBreaches.Net
有赞技术团队
有赞技术团队
K
Kaspersky official blog
Security Latest
Security Latest
The Register - Security
The Register - Security
Hugging Face - Blog
Hugging Face - Blog
S
Security @ Cisco Blogs
P
Proofpoint News Feed
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
AI
AI
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Proofpoint News Feed
Security Archives - TechRepublic
Security Archives - TechRepublic
N
News and Events Feed by Topic

博客园 - missthe

百度封杀淘客网站说明用户体验的重要性 sql语句中遇到“被零除错误”提示的解决方法 记录sql语句一二 sql 将查询结果保存为新表 ASP模板引擎之一 — asptemplate - missthe 比较实用的两种ASP模板引擎 fso文件的一些属性 用正则把英文双引号变成中文双引号 - missthe - 博客园 用split(str, chr(13)&chr(10))分割textbox当中的多行内容 汉字转换成拼音的代码(JS版) js参数使用时常犯的一个低级错误 获取某月天数的函数 JS控制文本框输入 什么是类,一个最最简单的类 汉字转换成拼音的代码(asp版) 获取当前浏览器地址的函数 过滤超链接的正则表达式函数 一个简单好用的UBB编辑器 SQL语句:那样写还不如这样写
JS判断点击行为而显示相应状态
missthe · 2008-11-22 · via 博客园 - missthe

<script language=javascript type=text/javascript>
function mycheck(){
  var obj = document.getElementById("throwSite");
      if(obj.checked == true){///被选中了
          document.getElementById("throwSiteAreaAll").disabled=false;
          document.getElementById("throwSiteAreaSome").disabled=false;
      }
      if(obj.checked == false){/// 取消选中 
          document.getElementById("throwSiteAreaAll").disabled=true;
          document.getElementById("throwSiteAreaSome").disabled=true;
          document.getElementById("throwSiteAreaAll").checked=false;
          document.getElementById("throwSiteAreaSome").checked=false;
          other1.style.display="none";
      }
}

function myselects(i){
switch(i){
   case 1:
 other1.style.display="none";
   break;
   
   case 0:
 other1.style.display="block";
         break;
         }
}
</script>

<body onload="mycheck();">
    <table border="0" width="100%" cellspacing="1" height="100%">
     <tr>
      <td> <input type="checkbox" name="throwSite" id="throwSite" value="1" onclick="mycheck();">内容网络</td>
     </tr>
     <tr>
      <td style="padding-left:25px;"><input type="radio" value="0" name="throwSiteArea" id="throwSiteAreaAll" onclick="myselects(1); ">  整个网络上的相关网页</td>
     </tr>
     <tr>
      <td style="padding-left:25px;"><input type="radio" value="1" name="throwSiteArea" id="throwSiteAreaSome" onclick="myselects(0); "> 仅我定位的展示位置上的相关网页
      <div id="other1" style="DISPLAY:none"><textarea rows="6" name="throwSiteAreaSomeList" cols="35"></textarea></div></td>
     </tr>  
    </table>