English 中文(简体)
为什么教区的职能被改变到所有的下级?
原标题:Why are parenscript functions changed to all lowercase?
  • 时间:2009-10-20 21:14:24
  •  标签:

如果我执行《公约》的话,在使用文稿时,

(parenscript:ps 
 (slot-value ($ "#mytextarea")  selectionStart))

它生产 j。

$( #mytextarea ).selectionstart;

Note that selectionStart is now selectionstart. It lost the uppercase S on the Start! How do I keep that uppercase S around?

最佳回答

文字将自动转换为CamelCase。

(parenscript:ps 
 (slot-value ($ "#mytextarea")  selection-start))

成果

"$( #mytextarea ).selectionStart;"
问题回答




相关问题