⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 17.4.1 createcaption方法.html

📁 javascript即用即差核心对象手册
💻 HTML
字号:
<body>
<form  name="frm">
  <input type="text" name="txt" />
  <input type="button" value="添加" onclick="addCaption()"/>
</form>
<table id="otable" border="1">
   <tr>
       <td>hello,how are you</td><td>you are welcome</td>
   </tr>
   <tr>
       <td>to</td><td>Javascript</td>
   </tr>
</table>
<script>
  function addCaption()
  {
     var otable=document.all.otable;
	 var txt=document.frm.txt.value;
	 var ocap=otable.createCaption();
	 ocap.innerHTML=txt.bold();
   }
</script>
</body>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -