dwr源码解惑

/** The original page id sent from the server */
dwr.engine._origScriptSessionId = "${scriptSessionId}";

/** The session cookie name */
dwr.engine._sessionCookieName = "${sessionCookieName}"; // JSESSIONID

以上这段代码取自  dwr 源码包中 engine.js
这里的${scriptSessionId}   与  ${sessionCookieName} 是从哪里或得的,又是怎么获得的呢。
有怎么会用  ${}  ,${} 是什么意思呢?请各位大侠不吝赐教!

你可能感兴趣的:(JavaScript,Ajax,浏览器,prototype,DWR)