「JavaScript を実行」の版間の差分

提供: MeryWiki
ナビゲーションに移動 検索に移動
Nnnn (トーク | 投稿記録)
編集の要約なし
MSY-07 (トーク | 投稿記録)
<source>タグを<syntaxhighlight>タグに置き換える
2行目: 2行目:


== 置き換え版 ==
== 置き換え版 ==
<source lang="javascript">
<syntaxhighlight lang="javascript">
// JavaScriptを実行 (置き換え版).js
// JavaScriptを実行 (置き換え版).js


12行目: 12行目:
   document.selection.Text = eval(document.selection.Text)
   document.selection.Text = eval(document.selection.Text)
}
}
</source>
</syntaxhighlight>


== 挿入版 ==
== 挿入版 ==
<source lang="javascript">
<syntaxhighlight lang="javascript">
// JavaScriptを実行.js (挿入版)
// JavaScriptを実行.js (挿入版)


26行目: 26行目:
   document.selection.Text = document.selection.Text + ' => ' + eval(document.selection.Text)
   document.selection.Text = document.selection.Text + ' => ' + eval(document.selection.Text)
}
}
</source>
</syntaxhighlight>


== アウトプットバー版 ==
== アウトプットバー版 ==
<source lang="javascript">
<syntaxhighlight lang="javascript">
// JavaScriptを実行 (アウトプットバー版).js
// JavaScriptを実行 (アウトプットバー版).js


42行目: 42行目:
   outputbar.Writeln("=> " + eval(document.selection.Text).toString())
   outputbar.Writeln("=> " + eval(document.selection.Text).toString())
}
}
</source>
</syntaxhighlight>

2023年5月16日 (火) 23:28時点における版

選択範囲をevalして結果をその場に出します。電卓代わりにどうぞ。

置き換え版

// JavaScriptを実行 (置き換え版).js

if (document.selection.IsEmpty) {
  document.selection.EndOfLine(false, mePosLogical)
  document.selection.StartOfLine(true, mePosLogical)
}
if (document.selection.Text) {
  document.selection.Text = eval(document.selection.Text)
}

挿入版

// JavaScriptを実行.js (挿入版)

if (document.selection.IsEmpty) {
  document.selection.EndOfLine(false, mePosLogical)
  document.selection.StartOfLine(true, mePosLogical)
}

if (document.selection.Text) {
  document.selection.Text = document.selection.Text + ' => ' + eval(document.selection.Text)
}

アウトプットバー版

// JavaScriptを実行 (アウトプットバー版).js

if (document.selection.IsEmpty) {
  document.selection.EndOfLine(false, mePosLogical)
  document.selection.StartOfLine(true, mePosLogical)
}

if (document.selection.Text) {
  outputbar.visible = true;
  // outputbar.Writeln(">> " + document.selection.Text)
  outputbar.Writeln("=> " + eval(document.selection.Text).toString())
}
スポンサーリンク