|
|
@@ -1,9 +1,9 @@
|
|
|
/*高亮文本标注*/
|
|
|
function Fill(data) {
|
|
|
var highlightArr = [];
|
|
|
- if ($(document.body).find(".wordStyle,.phraseStyle,.phraseStyle").length > 0 && typeof (dealAnswerFunc) == "function") {
|
|
|
- dealAnswerFunc(document.body, false, false);
|
|
|
- }
|
|
|
+ //if ($(document.body).find(".wordStyle,.phraseStyle,.phraseStyle").length > 0 && typeof (dealAnswerFunc) == "function") {
|
|
|
+ // dealAnswerFunc(document.body, false, false);
|
|
|
+ //}
|
|
|
clearHighlight();
|
|
|
$.each(data, function (i, item) {
|
|
|
if (typeof (item.HightCode) != 'undefined' && item.HightCode != null && item.HightCode != "") {
|
|
|
@@ -55,12 +55,14 @@ function Fill(data) {
|
|
|
}
|
|
|
});
|
|
|
// 绑定横线内处理
|
|
|
- $(document).find(".wordStyle,.phraseStyle,.phraseStyle,u,span,p").attr("ulflag", "0").attr("shcode", 1).attr("showflag", "1");
|
|
|
- $(document).find(".underlineContent").attr("shcode", 1).attr("ulflag", "1").attr("showflag", "1");
|
|
|
- $.each($(".underlineContent").find(".wordStyle,.phraseStyle,.phraseStyle,u,span,p"), function (index,element) {
|
|
|
- $(element).attr("shcode", 1).attr("ulflag", "1").attr("showflag", "1");
|
|
|
- });
|
|
|
-});
|
|
|
+ if ($(document).find(".wordStyle,.phraseStyle,.phraseStyle,u,span,p").attr("ulflag")==undefined) {
|
|
|
+ $(document).find(".wordStyle,.phraseStyle,.phraseStyle,u,span,p").attr("ulflag", "0").attr("shcode", 1).attr("showflag", "1");
|
|
|
+ $(document).find(".underlineContent").attr("shcode", 1).attr("ulflag", "1").attr("showflag", "1");
|
|
|
+ $.each($(".underlineContent").find(".wordStyle,.phraseStyle,.phraseStyle,u,span,p"), function (index, element) {
|
|
|
+ $(element).attr("shcode", 1).attr("ulflag", "1").attr("showflag", "1");
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
function clearHighlight() {
|