我有一个像
这样的用户输入var input = "x + y > z"
我创建了一个这样的元素:
var span = jQuery("<span/>").text(input)
如何恢复原始文本,而不是转义?
答案 0 :(得分:2)
使用.toolbar-button-open-notepad {
-fx-background-image: url("../images/buttons/notebook_edit.png");
-fx-background-size: 24,24;
-fx-background-position: center center;
-fx-background-repeat: no-repeat;
-fx-min-width:24;
-fx-min-height:24;
-fx-pref-height:24;
-fx-pref-width:24;
-fx-max-height:24;
-fx-max-width:24;
}
会为您提供文字内容。这不是一个转义版本。然而,如果您使用.text()
,则文本将被转义并返回。
.html()