JavascriptÖÆ×÷½ø¶ÈÌõ :: Jingle

来源: BlogBus 原始链接: http://www.blogbus.com:80/blogbus/blog/diary.php?diaryid=86833 存档链接: https://web.archive.org/web/20041029014258id_/http://www.blogbus.com:80/blogbus/blog/diary.php?diaryid=86833


Jingle Jingle's Daily Saying <<<¡¶¶«Ð°Î÷¶¾¡·Ö®ITÇóÖ°°æ | Ê×Ò³ | ¹ýȥʱÁË¡­¡­>>> JavascriptÖÆ×÷½ø¶ÈÌõ ʱ¼ä£º2004-02-11 ÕâÆªÎÄÕ½«ÏêϸÃèÊöÓ¦ÓÃJavascriptÖÆ×÷Á½ÖÖÀàÐ͵Ľø¶ÈÌõ£¬²¢ÇÒ½«ºËÐÄ´úÂë°ü×°ÆðÀ´¡£·ÅÔÚpercent.js /**

  • »æÖƼòµ¥°Ù·Ö±È½ø¶ÈÌõ
  • barId ½ø¶ÈÌõspanµÄID
  • fPercent Íê³ÉµÄ°Ù·ÖÊý
  • strCaption ±êÌâ
  • iHeight ¸ß¶È
  • iUnit ×îСµ¥Î»
  • bgcolor ±³¾°ÑÕÉ«
  • border ±ß¿òÑùʽ
  • cursor ¹â±êÑùʽ */ function SimplePercent(barId, fPercent, strCaption, iHeight, iUnit, bgcolor, border, cursor) { var pBar = document.all(barId); if (pBar) { pBar.title = strCaption + fPercent + "%"; pBar.innerHTML = ""; if (bgcolor){ pBar.style.backgroundColor = bgcolor; } if (border == null){ border = "1px solid #000000"; } pBar.style.border = border; if (cursor == null){ cursor = "default"; } pBar.style.cursor = cursor; if (iHeight == null || iHeight < 1){ iHeight = 1; } pBar.style.height = iHeight + "px"; if (iUnit == null || iUnit < 1){ iUnit = 1; } pBar.style.width = (iUnit * 100) + "px"; pBar.insertAdjacentHTML("BeforeEnd", ""); } } ʵÀý£º