小弟再次在线求救~!关于FCK编辑器的
源码: <script language="javascript"> function next(string){ var _string="s1-" $("#"+_string+String((parseInt(string)-1))).hide(); if(string=="2"){ $("#s1 div ol li:nth-child("+String((parseInt(string)-1))+")").removeClass("first-current"); $("#s1 div ol li:nth-child("+string+")").addClass("current"); } else if(string=="8"){ $("#s1 div ol li:nth-child("+String((parseInt(string)-1))+")").removeClass("current"); $("#s1 div ol li:nth-child("+string+")").removeClass("last"); $("#s1 div ol li:nth-child("+string+")").addClass("last-current"); } else{ $("#s1 div ol li:nth-child("+String((parseInt(string)-1))+")").removeClass("current"); $("#s1 div ol li:nth-child("+string+")").addClass("current"); } $("#"+_string+string).show(); } function mainnext(string){ var _string="s1-"; $(".main-image div").hide(); $("#s1 div ol li").removeClass("current first-current last-current last"); if(string=="1"){ $("#s1 div ol li:nth-child("+string+")").addClass("first-current"); } else if(string=="8"){ $("#s1 div ol li:nth-child("+string+")").addClass("last-current"); } else{ $("#s1 div ol li:nth-child("+string+")").addClass("current"); } $(".main-image div:nth-child("+String((parseInt(string)+1))+")").show(); } </script> FCK替换了的js <script language="javascript"> function next(string) { var _string="s1-" $("#" _string String((parseInt(string)-1))).hide(); if(string=="2"){ $("#s1 div ol li:nth-child(" String((parseInt(string)-1)) ")").removeClass("first-current"); $("#s1 div ol li:nth-child(" string ")").addClass("current"); } else if(string=="5"){ $("#s1 div ol li:nth-child(" String((parseInt(string)-1)) ")").removeClass("current"); $("#s1 div ol li:nth-child(" string ")").removeClass("last"); $("#s1 div ol li:nth-child(" string ")").addClass("last-current"); } else{ $("#s1 div ol li:nth-child(" String((parseInt(string)-1)) ")").removeClass("current"); $("#s1 div ol li:nth-child(" string ")").addClass("current"); } $("#" _string string).show(); } function mainnext(string){ var _string="s1-"; $(".main-image div").hide(); $("#s1 div ol li").removeClass("current first-current last-current last"); if(string=="1"){ $("#s1 div ol li:nth-child(" string ")").addClass("first-current"); } else if(string=="5"){ $("#s1 div ol li:nth-child(" string ")").addClass("last-current"); } else{ $("#s1 div ol li:nth-child(" string ")").addClass("current"); } $(".main-image div:nth-child(" String((parseInt(string) 1)) ")").show(); } </script>
是这样的 我在fck里写入一段js代码 源码如下 当我点击提交 写入后台的时候 发现在后台取fck里面的内容的时候 fck把+这个连字符替换成空了 请问有谁知道怎么办~
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
引用来自#2楼“红薯”的帖子
没办法,fck不是让你编写网页的,是编写内容的
要编写网页就用普通的 textarea 吧
在源代码里面写怎么可能会被替换呢。