文章列表
js得到上传文件大小和类型和名字
$('#i_submit').click( function() { //check whether browser fully supports all File API if (window.File && window.FileReader && window.FileList && window.Blob) { //get the file size and file type from file input field var fsize = ...
From: http://jax-ws.java.net/nonav/2.1.4/docs/jaxws-war.html
The WAR Contents
Typically, one creates the WAR file with a GUI development tool or with the
ant war task from the generated artifacts from wsimport, wsgen,
or apt tools.
For example, a sample WAR file starting from a WSDL file: ...
说明:此文为转载
1.firefox不能对innerText支持。
firefox支持innerHTML但却不支持innerText,它支持textContent来实现innerText,不过默认把多余的空格也保留了。如果不用textContent,如果字符串里面不包含HTML代码也可以用innerHTML代替。
2.禁止选取网页内容:
在IE中一般用js:obj.onselectstart=function(){return false;}
而firefox用CSS:-moz-user-select:none
3.滤镜的支持(例:透明滤镜):
IE:filter:alpha(opacit ...