这:
str = "test test"
ed.selection.setContent(str);//1
行为与此不同:
ed.selection.setContent("test test");//2
我正在使用文本编辑器,并且 setContent 在文本框中设置值。1 将文本框中的值设置为
"test test"
和 2 将其设置为
"test test".
我只能在程序中使用变量,而不是硬编码的值。我该怎么办?为什么会这样?