1

サーバーに送信するAJAXで使用するために、変数 処理jsからJavascript/jQueryに渡すことは可能ですか?

4

1 に答える 1

0

確かにそれは可能です。多くの方法がありますが、その方法の 1 つは、渡したい変数をwindowオブジェクトにアタッチすることです。これは唯一の解決策ではなく、間違いなく最も洗練された解決策ではありませんが、機能します。

だから、このようなもの:

// processingjs code...
window.varIWantToPassAround = "whatever"; 

// jQuery code... 
// as long as you don't redefine the variable "varIWantToPassAround", you can reference it without referencing the window object. IE "window.varIWantToPassAround"
// but I like to be explicit so when I read my code 3 months later and go "where did *that* come from, I can see it is attached to the window object.
$("#unicorn_powerd_div").someFunctionThatGrowsMagicUnicorns(window.varIWantToPassAround);
于 2010-11-22T07:52:53.237 に答える