word
英 [wɜ:d] 美 [wɜ:rd]
n.单词;话语;诺言;消息
vt.措辞,用词;用言语表达
vi.讲话
第三人称单数: words 复数: words 现在分词: wording 过去式: worded 过去分词: worded
spacing
英 [ˈspeɪsɪŋ] 美 [ˈspesɪŋ]
n.间隔,间距;跨距;疏密;留间隔
javascript wordSpacing属性 语法
作用:设置文本中的单词间距。
语法:Object.style.wordSpacing=normal|length
javascript wordSpacing属性 示例
<html> <head> <script type="text/javascript"> function changeWordSpacing() { document.getElementById("p1").style.wordSpacing="10px"; } </script> </head> <body> <p id="p1">This is an example paragraph</p> <input type="button" onclick="changeWordSpacing()" value="Change space between words" /> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例