小编Bra*_*sen的帖子

BlueImp在文件上传时无声地失败

当我尝试使用blueImp上传时,我打开控制台时出现了fllowing错误:

Uncaught TypeError: Cannot read property 'parseMetaData' of undefined
Run Code Online (Sandbox Code Playgroud)

伴随着堆栈跟踪.看来我在没有文件的情况下调用上传逻辑.有没有办法可以获得更多信息?

jquery file-upload blueimp

4
推荐指数
1
解决办法
8873
查看次数

Internet Explorer不支持max-width或max-height

我正在尝试使用CSS将我的图像缩放到精确值:

HTML:

<div id="thumbnail-container">
    <img src="sample-pic.jpg"/>
</div>
Run Code Online (Sandbox Code Playgroud)

CSS:

#thumbnail-container img {
    max-height: 230px;
    max-width: 200px;
}
Run Code Online (Sandbox Code Playgroud)

在这个例子中,sample-pic.jpg实际上是320x211.

在Firefox 11.0中,此代码工作正常,FF调整sample-pic.jpg为CSS规则中规定的230x211最大约束.

但是,在IE 9中,完全忽略了max-heightmax-width规则,并且图像呈现为通常的320x211大小.

如何修改HTML/CSS以使IE 9和FF 11.0都遵守这些最大约束?提前致谢!

html javascript css internet-explorer

3
推荐指数
1
解决办法
1万
查看次数

使用 localStorage 填充表单

我正在构建一个网络应用程序,其中有一个设置面板。我有一个将数据从表单保存到 localStorage 的代码,但是如果有一些数据保存到 localStorage,如何使其在页面加载时自动填充表单?

这是我的表单代码:

<label for="serveri"> Server: </label> 
<input type='text' name="server" id="saveServer"/> 
<button onclick="save_data()" type="button" value="Save" id="Save" data-theme="a">Save</button> 

<script> function save_data()
{ var input = document.getElementById("saveServer");
localStorage.setItem("server", input.value); 
var storedValue = localStorage.getItem("server"); } 
</script> 
Run Code Online (Sandbox Code Playgroud)

javascript forms local-storage jquery-mobile

3
推荐指数
1
解决办法
6261
查看次数

Dygraphs显示仅年份的日期值

我正在开发一个条形图,以显示与一系列其他年度值相比的年度汇总值.这些值是一年的总耗水量与上一年相比,依此类推.我无法弄清楚如何在CSV中格式化我的日期字段以获得单个年度值.假设它必须像20130101那样,我如何自定义x轴labl才能显示2013 2012 2011等?

CSV

Date,Litres 
2012,42047 
2013,18604.5
Run Code Online (Sandbox Code Playgroud)

g4 = new Dygraph(document.getElementById("year"),
                 "192.168.252.30/monitoring/data_water_year.php",
                 {legend: 'always', 
                  title: 'Yearly Water Usage', 
                  xlabel: 'Date', 
                  ylabel: 'Litres', 
                  includeZero: true, 
                  animatedZooms: true, 
                  drawXGrid: false, 
                  plotter: barChartPlotter} 
);
Run Code Online (Sandbox Code Playgroud)

javascript dygraphs

3
推荐指数
1
解决办法
1661
查看次数

Asp.Net 4.0在SqlServer中存储会话

我有共享主机提供的数据库.我想在sql server中存储会话,但它给了我错误:

Unable to use SQL Server because ASP.NET version 2.0 Session State is not installed on the SQL server. Please install ASP.NET Session State SQL Server version 2.0 or above

[HttpException (0x80004005): Unable to use SQL Server because ASP.NET version 2.0 Session State is not installed on the SQL server. Please install ASP.NET Session State SQL Server version 2.0 or above.]
System.Web.SessionState.SqlPartitionInfo.GetServerSupportOptions(SqlConnection sqlConnection) +2147087
System.Web.SessionState.SqlPartitionInfo.InitSqlInfo(SqlConnection sqlConnection) +107
System.Web.SessionState.SqlStateConnection..ctor(SqlPartitionInfo sqlPartitionInfo, TimeSpan retryInterval) +531
System.Web.SessionState.SqlSessionStateStore.GetConnection(String id, Boolean& usePooling) +237
System.Web.SessionState.SqlSessionStateStore.CreateUninitializedItem(HttpContext context, …
Run Code Online (Sandbox Code Playgroud)

asp.net session-state sql-server-2008

2
推荐指数
1
解决办法
1万
查看次数

如何在ul标签中使用nth-of-type进行样式设置?

如何nth-of-type在一个<span>元素中包含的<li>元素上使用css选择器<ul>

我本来期望span:nth-of-type(odd)span:nth-of-type(even)工作,但他们没有.

有问题的页面如下:

<style>
  span:nth-of-type(even) {
    background-color: grey;
  }

  span:nth-of-type(odd) {
    background-color: blue;
  }
</style>
<ul>
    <li>
<span>Test 1</span>
    </li>
    <li>
<span> 2 Test</span>
    </li>
</ul>

<br>
Should look like this:
<br>
<span>Test 1</span>
<br>
<span> 2 Test</span>
Run Code Online (Sandbox Code Playgroud)

这是一个JSFiddle来显示实际问题.

css css-selectors

0
推荐指数
1
解决办法
891
查看次数