Ò׽ؽØÍ¼Èí¼þ¡¢µ¥Îļþ¡¢Ãâ°²×°¡¢´¿ÂÌÉ«¡¢½ö160KB

¸ù¾ÝinputµÄtypeÀ´¿ØÖÆcssÑùʽ

<style type="text/css">
/*
¸ù¾ÝinputµÄtypeÀ´¿ØÖÆcssÑùʽ
*/
/*
1.ÓÃcssµÄexpressionÅжϱí´ïʽ
Óŵ㣺¼òµ¥£¬ÇáÁ¿¼¶
ȱµã£ºexpressionÅжϱí´ïʽFireFoxÊDz»Ö§³ÖµÄ¡£ÖÂÃüµÄÊÇÖ»ÄÜÇø·Ö³öÒ»¸ö£¨ÀýÈçÀý×ÓÖоÍÖ»ÄÜÇø·Ö³ötextÎı¾¿ò£©£¬²»ÒªÊÔͼÉèÖöà¸ö£¬ÏÂÃæµÄ»á½«ÉÏÃæµÄ¸²¸Çµô
 
input
{
background-color:expression(this.type=="text"?'#FFC':'#eee');
}
*/
/*
2.ÓÃcssÖеÄtypeÑ¡ÔñÆ÷
Óŵ㣺¼òµ¥£¬Ã÷ÁË£¬¿ÉÒÔ·ÖÇø³ö¸÷¸öinput¿Ø¼þÐÎ̬¡£
ȱµã£ºtypeÑ¡ÔñÆ÷£¬IE6֮ǰµÄ¶Ôweb±ê×¼Ö§³ÖµÄ²»Ì«ºÃµÄä¯ÀÀÆ÷²»ÄÜÖ§³Ö
input[type="text"]
{
background-color:aquamarine;
}
input[type="password"]
{
background-color:bisque;
}
input[type="submit"]
{
background-color:blueviolet;
}
input[type="reset"]
{
background-color:chocolate;
}
input[type="radio"]
{
background-color:darkcyan;
}
input[type="checkbox"]
{
background-color:dodgerblue;
}
input[type="button"]
{
background-color:purple;
}
*/
</style>
<script type="text/javascript">
/*
  3.ÓÃjavascript½Å±¾ÊµÏÖ
 
  Óŵ㣺¿ÉÒÔ·ÖÇø³ö¸÷¸öinput¿Ø¼þÐÎ̬¡£
  ȱµã£º¼¼ÊõÇ£³¶Ãæ½Ì¹ã£¬ÒòΪÓÃjsºóÆÚ´¦Àí£¬ËùÒÔÔÚjsûÓÐÆð×÷ÓÃ֮ǰ£¬¸÷¸öinput»¹ÊÇԭʼ״̬½ÏÖÂÃüµÄÊÇFireFox²»Ö§³Ö
*/
function GetCss(obj)
{
   var colorArr=new Array("aliceblue","antiquewhite","aqua","aquamarine","darkgreen","darkslateblue","magenta","sienna");
   var tpArr=new Array("text","password","submit","reset","radio","checkbox","button","file");
   for(var i=0;i<tpArr.length;i++)
   {
      if(obj.type==tpArr[i])
   {
      obj.style.backgroundColor=colorArr[i];
   }
   }
}
function CheckType()
{
  var obj = document.getElementsByTagName("input");
  for (var i=0;i<obj.length;i++)
  {
     GetCss(obj[i]);
  }
}
</script>
<form>
    <input type="text" />
  <br>
  <br>
    &l


Ïà¹ØÎĵµ£º

table Css³£ÓÃÑùʽ

<html>
<body>
    <table class="t FCK__ShowTableBorders" cellspacing="0" cellpadding="8" width="600" border="0">
    <tbody>
        <tr>
          &n ......

js cssÑùʽ²Ù×÷´úÂë

     ÎÒÃǾ­³£ÓÃjs¿ØÖÆCSSÑùʽ£¬´Ó¶ø´ïµ½Á¼ºÃµÄÓû§½çÃæºÍ¶¯Ì¬Ð§¹û¡£ÎÒÃǾ­³£Ê¹ÓõÄÁ½ÖÖ·½Ê½£º
     ·½·¨1£º
     var element= document.getElementById(”id”);
element.style.width=”200px”;
element.style.height=”200p ......

½øÐÐÒ³ÃæÉè¼Æ£¬·ÖÏíDIV+CSSһЩС¹æÔò

ÔÚ½øÐÐÒ³ÃæÉè¼ÆµÄʱºò£¬ÏàÐÅÏÂÃæÕâЩ¶«Î÷Ó¦¸ÃÄܹ»°ïÖúÄ㣬DIV+CSS£¬Ï£Íû¿ÉÒÔΪÄã½Úʡһµãʱ¼ä¡£
Ò»¡¢           ÉÆÓÃcssËõд¹æÔò
    /*×¢ÒâÉÏ¡¢ÓÒ¡¢Ï¡¢×óµÄÊéд˳Ðò*/
1.      ¹ØÓڱ߾ࣨ4±ß£©£º
1px 2px 3px 4px (ÉÏ¡¢Ó ......

javascript ¶¯Ì¬¼ÓÔØcss¡¢js

¼æÈÝIE¡¢FireFox¡¢Chrome
//¼ÓÔØjs
function loadJs(){
    if (!getObj('script_PlData')){
        var scriptObj= document.createElement("script");
        //scriptObj.id = 'script_1';
    &nb ......
© 2009 ej38.com All Rights Reserved. ¹ØÓÚE½¡ÍøÁªÏµÎÒÃÇ | Õ¾µãµØÍ¼ | ¸ÓICP±¸09004571ºÅ