javascript - execcommand:網頁文字編輯

execCommand(sCommand,bUserInterface,vValue) : 呼叫網頁的Command讓網頁選取位置產生變化,如: 文字處理{複製、貼上、剪下}、排版{對齊、編號、上下標}、變更字型與大小等等.


範例:
  • 前景色: document.execCommand('ForeColor',false,'#ff0000');
  • 背景色: document.execCommand('BackColor',false,'#ff0000');
  • 文字剪下: document.execCommand('Cut');
  • 文字複製: document.execCommand('Copy');
  • 文字貼上: document.execCommand('Paste');
  • 對齊左: document.execCommand('justifyleft');
  • 對齊中: document.execCommand('justifyleft');
  • 對齊右: document.execCommand('justifyleft');
  • 等寬對齊: document.execCommand('justifyFull');
  • 粗體字: document.execCommand('bold');
  • 斜體字: document.execCommand('italic');
  • 底線: document.execCommand('underline');
  • 刪除線: document.execCommand('strikethrough');
  • 變更字型: document.execCommand('fontname');
  • 變更大小: document.execCommand('fontsize');
  • 右縮: document.execCommand('indent');
  • 左縮: document.execCommand('outdent');
  • 編號: document.execCommand('orderedlist');
  • 標號: document.execCommand('unorderedlist');
  • 建立連結: document.execCommand('createlink');

沒有留言:

橫式廣告