复制内容到剪贴板 程序代码
<form name="form1" method="post" action="">
<input name="number" type="text" id="number">
<input type="button" name="Submit" value="False" onClick="javascript:form1.number.readOnly='';">
<input type="button" name="Submit2" value="True" onClick="javascript:form1.number.readOnly='true';">
</form>
<input name="number" type="text" id="number">
<input type="button" name="Submit" value="False" onClick="javascript:form1.number.readOnly='';">
<input type="button" name="Submit2" value="True" onClick="javascript:form1.number.readOnly='true';">
</form>
Tags: 文本框
复制内容到剪贴板 程序代码
<!--嵌入FCK编辑器-->
<%
FCKeditor oFCKeditor ;
oFCKeditor = new FCKeditor( request, "content" ) ;
oFCKeditor.setBasePath("") ;
oFCKeditor.setValue(news.getContent());
out.println( oFCKeditor.create() ) ;
%>
<%
FCKeditor oFCKeditor ;
oFCKeditor = new FCKeditor( request, "content" ) ;
oFCKeditor.setBasePath("") ;
oFCKeditor.setValue(news.getContent());
out.println( oFCKeditor.create() ) ;
%>
FCKeditor编辑器的配置文件是fckconfig.js,其中有对编辑器各种默认属性的设置。以下是fckeditor与java集成使用时上传文件的设置(需要注意的是编辑器不会自动创建文件上传的文件夹,需要在项目的根目录中手动添加),将fckeditor.js文件中以下几个属性原来的值修改为如下设置: