我们如何在除第一次以外的多次使用的类中使用tinymce?
我在看multiple tinymce textareas,但找不到想要的东西。
我def makePalindromeByFewestEdits(word: String): String = {
val n = word.length
val dp = Array.ofDim[Int](n, n)
for (window <- 1 until n)
(0 until n)
.map(start => (start, start + window))
.takeWhile(_._2 < n)
.foreach {
case (start, end) if word(start) == word(end) =>
dp(start)(end) = dp(start + 1)(end - 1)
case (start, end) =>
dp(start)(end) = math.min(dp(start + 1)(end), dp(start)(end - 1)) + 1
}
val minInsertions = dp(0)(n - 1)
val palindrome = Array.ofDim[Char](n + minInsertions)
@tailrec
def reconstruct(start: Int, end: Int, count: Int, offset: Int): String = {
if (count == 0) {
// we have written 'start' characters from the beginning, the current insertion index is 'offset', and
// the number of characters left to be written are the substring word[start..end]
Array.copy(word.toCharArray, start, palindrome, offset, end - start + 1)
palindrome.mkString
} else {
val (s, e, c, ch) = if (word(start) == word(end))
(start + 1, end - 1, count, word(start))
else if (dp(start + 1)(end) < dp(start)(end - 1) ||
(dp(start + 1)(end) == dp(start)(end - 1) && word(start) < word(end))
)
(start + 1, end, count - 1, word(start))
else
(start, end - 1, count - 1, word(end))
palindrome(offset) = ch
palindrome(palindrome.length - 1 - offset) = ch
reconstruct(s, e, c, offset + 1)
}
}
reconstruct(0, n - 1, minInsertions, 0)
}
已使用过多次,但不希望在第一次使用mce。
我用过:
.wp-editor-area
答案 0 :(得分:0)
实际上,您不能“跳过”与选择器的值匹配的任何元素-没有配置可以做到这一点。
您可以添加第二堂课吗?相关文本区域是否也有id
?如果不想让这些文本区域之一与选择器匹配,则需要找到与该第一个文本区域不匹配的选择器。