- 浏览: 30860 次
- 性别:
- 来自: 深圳
最新评论
-
tanchong:
[span]bbbb[/span]
jforum增加fckeditor编辑器 -
tanchong:
<span>bbbb</span& ...
jforum增加fckeditor编辑器
文章列表
t510的BIOS时候断电,结果不开机。都是开机一长两短报警。
本来不抱希望去换主板的。最后想着试试在网上找了一个帖子学者恢复bios。
具体盲刷方法如下:
1,下载一个叫做 wincris 的工具,并解压缩到比如 D:\wincris 目录下,这是 Phoenix 公司提供的应急启动盘工具。
http://download.csdn.net/download/sheldonw1028/4238634 我下载的这个
2,找到你机器对应的BIOS的ROM文件,改名为 BIOS.WPH文件备用, 个人建议准备2-3个版本备用,一个不成功可以换另一个。
a,一个是你刷错之前的版本,这个可以把硬盘 ...
参考文档地址(有错误的地方)
http://www.59biye.com/mongodb/cont/pid/284/id/308.shtml
=========下载可以选择msi或zip===========
https://www.mongodb.org/downloads#previous
======服务端=========
1.在d:新建目录mongodb_db
2.进入安装目录bin,运行cmd, 启动服务端
mongod.exe --dbpath=d:\mongodb_db
mongod.exe --logpath=d:\mongodb_db\logs\mongodbssss.l ...
chart: {
renderTo: 'container',
zoomType: 'y',
events: {
selection: function(event) {
if (event.xAxis) {
$report.html('Last selection:<br/>min: '+ Highcharts.dateFormat('%Y-%m-%d', event.xAxis[0].min) +
...
上面有很多实用方法
https://github.com/highslide-software/highcharts.com/tree/master/samples/highcharts/members
var chart;
$(document).ready(function() {
var options = {
chart: {
plotBorderWidth: 1,
defaultSeriesType: 'scatter',
renderTo: 'bubbleChart',
},
xAxis: {
max: 1,
min: -1
},
yAxis: {
ma ...
1.chartType 图形的种类
(1)Line with markers and shadow
series : [{
name : 'AAPL Stock Price',
data : data,
marker : {
enabled : true,
radius : 3
},
shadow : true,
tooltip : {
valueDecimals : 2
}
}]
(2) type: 'spline',
(3)step line:
series: [{
step: true
}]:
(4)area
series : [{
n ...
highstock,highchart
1.在yAxis属性加plotLines加虚线
yAxis : {
title : {
text : 'Exchange rate'
},
plotLines : [{
value : 0.6738,
color : 'green',
dashStyle : 'shortdash',
width : 2,
label : {
text : 'Last quarter minimum'
}
}, {
value : 0.7419 ...
springmvc ajax 传递 对象数组 list 到后台
我刚才试了一个方法,可以了
前端
dataType: 'json',
contentType : "application/json",
data : $.toJSON([{id:'111', typeId: '2222'} ,{id:'111', typeId: '2222'}]),
记得contentType 写成"application/json",
$.toJSON()方法 在console工程下有个jquery.json-2.4.min.js里
后台方法直接接收个数组就可以了 ...
altRows boolean 设置表格是否允许行交替变色值 false 是,需重新加载
altclass String 用于表格行交替变色的class属性。你可以定义自己的class来替代默认值。只有当altRows属性设置为true时,该属性才起作用 ui-priority-secondary 是,但需要重新加载
jQuery("#list9").jqGrid({
altRows:true,
altclass:'*******',
rowNum:15,
//autowidth: true,
rowList:[10,20,30],
pag ...
1、 应jforum原有的BBcode编辑器不能实现动态编辑图片功能,故选择 fckeditor富文本编辑器。
2、 首先,在http://ckeditor.com/download 下载最新源码。本例当前使用的是FCKeditor_2.6.4.zip版本。
3、 将其解压,参考其目录下fckeditor2.6\_samples\html的页面引用方式。
4、 修改其上传功能,fckeditor2.6/目录下fckconfig.js 文件修改图片处理的功能页面
FCKConfig.ImageUploadURL = FCKConfig.BasePath + 'filemanager/co ...