frame

英[freɪm] 美[frem]

n.Frame; border; glasses frame; organization

vt.Frame; Design; express; make suitable for (a special purpose)

adj. With a wooden frame, with a frame

Third person singular: frames Plural: frames Present participle: framing Past tense: framed Past participle: framed

border

UK[ˈbɔ:də(r)] US[ˈbɔ:rdə(r)]

n. border ; edge; border; hemming

vt.& vi. border with…, on the edge of…

vt. along the edge of…, surround…, border…

vi. Approximate, adjacent

Third person singular: borders Plural: borders Present participle: bordering Past tense: bordered Past participle: bordered

javascript frameBorder property syntax

Function: Set or return whether to display the border around the frame.

Syntax: frameObject.frameBorder=1|0

Description: If you do not want the frame border to appear, please set this property to 0 .

javascript frameBorder property example

<html>
<frameset cols="50%,50%">
  <frame id="leftFrame" frameborder="1" src="http://www.phpstudy.net/php">
  <frame id="rightFrame" frameborder="0" src="http://www.phpstudy.net" >
</frameset>
</html>

Run instance »

Click the "Run instance" button to view the online instance