Chromeは、Visual Studioのファイルのコードビハインドの編集および続行機能と同様に、ページ全体を更新することなく、その場でJavascriptを編集できます。これは、JavaScript関数またはスニペットのプロトタイプを作成するときに役立ちます。
ブレークポイントを押してから、編集ボタンを押す必要があります。次に、現在の関数が展開され、変更を有効にしてその関数に戻ることができます。VSの編集と続行ほど良くはありませんが、少なくともそれは何かです。また、変更できないものもあるようです。
ライブJavaScript編集を実行できる他のツールはありますか、それともより良い方法がありますか?Visual Studio 2010は、私が知る限りではありません。
function test1() {
debugger;
var data_array = [];
var newvar1 = newfunc()+'dc'; // ok - can edit
var newvar2 = "hey2"; // ok - can edit
var newvar3 = 4; // ok can edit
var someobj = {1:"hey2", 2:"string2"}; // no - can not edit values after executed once
var word_array = ["hello", "goodbye", "adios"]; // no - can not edit values after executed once
for (var counter = 0; counter < 500; counter++) {
data_array[counter] = counter + word_array[Math.floor(Math.random() * (word_array.length))];
}
}
function newfunc() {
return "yes44";
}
同様の質問:
GoogleChromeを使用してHTMLページに埋め込まれたJavaScriptをデバッグおよび編集
するChromeデバッガーで編集する
自動保存プラグイン http://www.google.com/intl/cs-CZ/events/io/2010/sessions/chrome-developer-tools.htmlGoogle のプレゼンテーション: https ://github.com/NV/chrome-devtools-自動保存