热搜:NVER node 开发 php

php下使用kindeditor插件,用js始终获取不到内容,。

2024-07-28 14:45:01
php下使用kindeditor插件,用js始终获取不到内容,。

是这样的,我把kindeditor封装到了smarty的插件,在另外一个页面中使用引入。

插件:function.html_kindeditor.php

<?phpfunction smarty_function_html_kindeditor(){    $editor1='        			        ';    return $editor1;}


另外一个需要引入的模板是:a.html
//jquery代码		$("#subContents").click(function(){			 alert("字符串长度:"+($("#content1").val()).length+"类型:"+(typeof $("#content1").val()));		});

输入字符串后,长度为0,判断是string



回复讨论(解决方案)

allowFileManager : true,						afterBlur:function(){ 							this.sync(); 						}

试试...

allowFileManager : true,						afterBlur:function(){ 							this.sync(); 						}

试试...


还真行,问题解决了。哈哈。