gpt4 book ai didi

jquery - 从 TinyMCE 中获取值(value)

转载 作者:行者123 更新时间:2023-12-01 02:55:23 26 4
gpt4 key购买 nike

我在页面中使用 TinyMCE 编辑器,但我需要使用 JQuery 获取值。

我完全不知道如何做到这一点,我尝试过使用各种 id 并尝试获取值,但它对任何东西都不起作用。

JSfiddle

$( document ).ready( function() {
tinyMCE.init({
// General options
mode : "exact",
elements : "thisID",

// Skin options
skin : "o2k7",
skin_variant : "silver",
});

derp();
});


function derp() {
$('#go').click( function() {
// alert('derp');
x = $('#thisID_ifr').val(); //this is where i attempt to get the value of the textarea but its not working?!?
alert(x);
});
//
}

最佳答案

尝试从文本区域获取值

tinyMCE.activeEditor.getContent();

// Get the raw contents from the editor
tinyMCE.activeEditor.getContent({format : 'raw'});

//Get the text content from the editor
tinyMCE.activeEditor.getContent({format : 'text'});

// Get content of a specific editor:
tinyMCE.get('thisID').getContent();

这是Demo

关于jquery - 从 TinyMCE 中获取值(value),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24347222/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com