<script type="text/javascript"> 
tinyMCE.init({                       //特别是这句话。
// General options
mode : "textareas",
theme : "advanced",
skin : "o2k7",
plugins : "pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,contextmenu,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist,autosave",
// Theme options
theme_advanced_buttons1 : "save,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect,|,forecolor,backcolor,|,fullscreen,preview",
theme_advanced_buttons2 : "tablecontrols,bullist,numlist,|,hr,outdent,indent,|,undo,redo,|,image,media,|,insertdate,inserttime,code",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "center",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : false, // Example content CSS (should be your site CSS)
content_css : "../css/content.css", // Drop lists for link/image/media/template dialogs
template_external_list_url : "lists/template_list.js",
external_link_list_url : "lists/link_list.js",
external_image_list_url : "lists/image_list.js",
media_external_list_url : "lists/media_list.js", // Style formats
style_formats : [
{title : 'Bold text', inline : 'b'},
{title : 'Red text', inline : 'span', styles : {color : '#ff0000'}},
{title : 'Red header', block : 'h1', styles : {color : '#ff0000'}},
{title : 'Example 1', inline : 'span', classes : 'example1'},
{title : 'Example 2', inline : 'span', classes : 'example2'},
{title : 'Table styles'},
{title : 'Table row 1', selector : 'tr', classes : 'tablerow1'}
], // Replace values for the template plugin
template_replace_values : {
username : "Some User",
staffid : "991234"
}
});

tinyMCE.init({
mode : "exact",
elements : "txtDepartureTime,txtEDepartureTime,txtLineArrangement,txtELineArrangement,txtDetailPrice,txtEDetailPrice,txtTravelTips,txtETravelTips",
theme : "simple"
});
</script>我正在看引用的js文件,但是不晓得执行js文件的哪里。

解决方案 »

  1.   

    这个只有函数没有调用,你需要调用什么就调用什么,比如xx.init()
      

  2.   

    不是,已经执行了啊,而且是执行了两个函数,配置参数不同而已。不知道你这代码写在哪里,如果是在body里,那肯定是执行了
      

  3.   

    这是个函数调用,执行什么不知道!你就是写了个函数名,传了个对象参数,只是这个对象超级大而已!
    类似a(1),调用a函数,传入参数1,不知道a()到底执行什么!
      

  4.   

    这是著名的tinyMCE文本编辑器的js代码。
    我想问下头一句是什么意思?tinyMCE.init();tinyMCE是js里面定义的对象吗?我在引用的js里面搜怎么找不到呢?