HTML DOM maxWidth ÊôÐÔ
¶¨ÒåºÍÓ÷¨
maxWidth ÊôÐÔÉèÖÃÔªËØµÄ×î´ó¿í¶È¡£
Óï·¨£º
Object.style.maxWidth=length|%
¿ÉÄܵÄÖµ
| Öµ | ÃèÊö |
|---|---|
| length | ¶¨ÒåÔªËØµÄ×î´ó¿í¶ÈÖµ¡£ |
| % | ¶¨Òå»ùÓÚÆä°üº¬¿éµÄ°Ù·Ö±È×î´ó¿í¶È¡£ |
ʵÀý
±¾ÀýÉèÖÃÔªËØ¿òµÄ×î´ó¿í¶È£º
<html>
<head>
<script type="text/javascript">
function setMaxWidth()
{
document.getElementById("p1").style.maxWidth="10px";
}
</script>
</head>
<body>
<p id="p1">This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.</p>
<input type="button" onclick="setMaxWidth()"
value="Set max width" />
</body>
</html>