小弟再次在线求救~!关于FCK编辑器的

发布于 2021-11-10 21:20:20 字数 2672 浏览 869 评论 2

源码:
<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酒几许 2021-11-12 12:58:07

引用来自#2楼“红薯”的帖子

没办法,fck不是让你编写网页的,是编写内容的

要编写网页就用普通的 textarea 吧

水水月牙 2021-11-11 16:58:15

在源代码里面写怎么可能会被替换呢。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文