- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
"/> Save -6ren">
我有一个 nicedit 文本区域。当我单击按钮将数据发送到 jquery $.get 函数时,它不会发送格式,只是在数据前面添加一个制表符空格。
这是表格
<form id="myFrm">
<input type="hidden" id="page_ref" name="page_ref" value="<? echo $page_ref; ?>"/>
<input type="hidden" id="template_ref" name="template_ref" value="<? echo $template_ref; ?>"/>
<input type="hidden" id="box_id" name="box_id"/>
<textarea name="edit_content" id="edit_content"></textarea>
<div class="button">Save</div>
</form>
文本区域#edit_content被初始化为nicedit并填充来自数据库的数据
function get_edit_content(box_id,page_ref,template_ref)
{
$(document).ready(function() {
if(area1) {
area1.removeInstance('edit_content');
area1 = null;
document.getElementById("edit_content").value="";
}
$.get("get_content.php", { box_id: box_id, page_ref: page_ref, template_ref:template_ref } )
.done(function(data) {
document.getElementById("edit_content").value=data;
document.getElementById("page_ref").value=page_ref;
document.getElementById("template_ref").value=template_ref;
document.getElementById("box_id").value = box_id;
area1 = new nicEditor({fullPanel : true}).panelInstance("edit_content",{hasPanel : true});
});
});
}
当我单击“保存”按钮时,我调用此函数
$(document).ready(function() {
$('.button').click(function() {
var edit_content = $('#myFrm').find('.nicEdit-main').text();
var box_id = $('#myFrm').find("#box_id").val();
var page_ref = $('#myFrm').find("#page_ref").val();
var template_ref = $('#myFrm').find("#template_ref").val();
$.post("update_textarea.php",
{
box_id:box_id, page_ref:page_ref, template_ref:template_ref, edit_content:edit_content
},
function(data,status){
alert(data);
UpdateElementOfParent(box_id, page_ref, template_ref)
edit_box('hide')
});
});
});
“alert(data)”返回文本区域的内容,但没有格式设置,内容开头有一个制表符空格
有什么线索吗?
最佳答案
如果尝试使用 $.html() 而不是 $.text() 会怎样?
$(document).ready(function() {
$('.button').click(function() {
var edit_content = $('#myFrm').find('.nicEdit-main').html();
// console.log(edit_content);
alert(edit_content);
[...]
});
});
关于javascript - nicedit 格式未通过 jquery $.get 传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16034195/
我想检查我的文本区域,如果用户没有填写消息,它会提示一条警报消息。然而我的文本区域似乎被 nicEdit 文本区域取代。 HTML 部分 bkLib.onDomLoaded(function()
我正在使用 nicEdit 作为本地站点的记事本编辑器。我使用复选框来调用 nicEdit 函数(注释),但面板根本不显示。甚至警报也没有出现。 还有其他三个函数可以使用 cookie 保存笔记: /
我在我的应用程序中使用 NicEdit 编辑器,但是当我在文本区域中写入文本时,它会增加大小而不是向 textarea 添加滚动条。请帮助解决如何将滚动条添加到 nicEdit 编辑器文本区域滚动条。
我正在为我的一个项目使用 NicEdit WYSIWYG 编辑器。 http://nicedit.com 我遇到的问题是 NicEdit 想要让我将任何代码(HTML、CSS、PHP 等)发布到 my
$('#update').val(); 不工作怎么办?thk 我想在提交时删除文本区域中的数据 bkLib.onDomLoaded(function() { nicEditors.allT
你好,我的 nicedit 编辑器有一个小问题 问题是 第一行不受影响! 示例: 我在文本区域框的第一行写了(asdad) 我标记了它并单击(居中对齐) 它应该位于盒子的中心 看这张图 这个问题只出现
在这里几个人的大力帮助下,我成功创建了一个页面,可以动态创建动态可调整大小/可拖动的文本区域。我现在正在尝试将 nicedit 集成到这些文本区域中。它的工作到了一定程度。双击后,文本区域将成为 ni
我在我的网站上使用 nicEdit 作为文本编辑器。我包括这个: 除字体大小和字体系列外,所有按钮均有效,所选文本不会更改为我选择的字体大小和字体系列。怎么了? 最佳答案 我可以看看你的代码(css
我是这样称呼编辑器的: new nicEditor({ buttonList : ['bold','italic','underline','upload'],
代码如下 //
我已将 nicEdit 添加到我的代码中,但不知何故,当我选择字体大小和系列时,nicEdit 不显示所做的选择。有什么出路和可能的解决方案吗? 最佳答案 好吧,我稍微调整了 js 文件以获得 ans
我有这个 jQuery 代码: var char = 60; $("#counter").append("You have " + char + " char."); $("#Stat
我一直在尝试在我的网站表单上使用 nicedit (http://nicedit.com/)(我用它来提交短篇小说)。该表单包括几个文本区域()。其中之一是关于短篇小说的内容,我想在其中使用 nice
使用 NicEdit 时,可以使用编辑器中的“添加链接”按钮突出显示文本,以便可以对其进行超链接。 单击“添加链接”按钮时,会出现一个弹出窗口,您可以在其中指定链接是应在新窗口中打开还是在当前窗口中打
我正在使用 NicEdit Inline WYSIWYG 并尝试了解如何使用占位符。 我创建了一个带有属性占位符的 div,但是当 NicEdit 激活它时,显示没有占位符的空白文本区域。 也许有一些
我在我的一个项目中使用 nicEditor,我想使用插件中的 jQuery 提交内容。这是我的代码 bkLib.onDomLoaded(function() { new nicEditor().pa
我的网站 nicedit 的所有按钮都很好。但我想在我的网站之一中删除编辑器的上传按钮。我有一个按钮列表选项,但我正在搜索如下设置: fullPanel: true, hideButton: '上传'
我的网站允许用户写短篇小说。我希望他们可以自由设置文本的格式和样式,所以我安装了 NicEdit要做到这一点。但是 NicEdit 只有 9 个默认字体;如何添加更多? 这是我的编辑器。它使用具有完整
我正在使用 nicEdit 将内容发布到我的数据库中。但我发现,当我发布内容时,它会为每个创建的段落创建一堆标签,例如 div、p、标签。当我将内容加载到网站上时,这会导致我的网站扭曲。 为什么 ni
有人试过吗? 我从 nicEditor 开始,但正在考虑切换到 TinyMCE,因为: nicEditor 不再处于开发阶段,因此可能与 future 的 CSS/HTML/jQuery 版本存在不兼
我是一名优秀的程序员,十分优秀!