2010年11月29日 8:19 am #10011
gecca
メンバー
どこの国の方なのでしょうか?
日本のフォーラムに発言してもらえて嬉しいです。
こういうことですよね?
main.jsee
function include(fileName) {
var fso = new ActiveXObject(“Scripting.FileSystemObject”);
var stream = fso.OpenTextFile(ScriptFullName.replace(/[^]*$/, “”) + fileName + “.jsee”);
eval(stream.ReadAll());
stream.Close();
}include(“strategy1”);
include(“strategy2”);
strategy1.jsee
alert(“strategy1 is included!”);
strategy2.jsee
alert(“strategy2 is included!”);
もし希望と違っていたら、また質問してください。