这次给大家带来html里table表数据如何转为Json格式,html里table表数据转为Json格式的注意事项有哪些,下面就是实战案例,一起来看一下。
<table>表数据转 Json 格式的javascript函数如下
<script>
var keysArr = new Array("key0", "key1","key2");
function TableToJson(tableid) { //tableid是你要转化的表的表名,是一个字符串,如"example"
var rows = document.getElementById(tableid).rows.length; //获得行数(包括thead)
var colums = document.getElementById(tableid).rows[0].cells.length; //获得列数
var json = "[";
var tdValue;
for (var i = 1; i < rows; i++) { //每行
json += "{";
for (var j = 0; j < colums; j++) {
tdName = keysArr[j]; //Json数据的键
json += "\""; //加上一个双引号
json += tdName;
json += "\"";
json += ":";
tdValue = document.getElementById(tableid).rows[i].cells[j].innerHTML;//Json数据的值
if (j === 1) {//第1列是日期格式,需要按照json要求做如下添加
tdValue = "\/Date(" + tdValue + ")\/";
}
json += "\"";
json += tdValue;
json += "\"";
json += ",";
}
json = json.substring(0, json.length - 1);
json += "}";
json += ",";
}
json = json.substring(0, json.length - 1);
json += "]";
return json;
}
</script>
相信看了这些案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
相关阅读:
这次给大家带来html里怎样实现异步上传文件,html里实现异步上传文件的注意事项有哪些,下面就是实战案例,一起来看一下。
代码如下:
<form action="/hehe" method="post">
<input type="text" value="hehe"/>
<input type="submit" value="upload" id="upload"/>
</form>
这是html中最常见最简单的表单提交方式,但是这种方式必须会切换页面,也许有些时候我们希望可以在同一个页面与服务器进行交互,并不希望提交完表单后切换到另一个页面去,怎么办呢,这里分享几种表单提交的方式。
首先介绍一种曲线救国的解法,以上的代码片段不用改变,只要添加以下代码
<iframe id="uploadFrame" name="uploadFrame"></iframe>
并且在form表单中添加target属性,target=uploadFrame,target属性需要与iframe中的id的值一致(或者是name属性的值,试一试就知道了)。
简单解释一下,其实这里我们的表单提交之后也是刷新了,但是为什么没有跳转页面呢,就是因为这个iframe,其实我们刷新在iframe中了,而iframe是空的,也就跟没有刷新是一样的了,就给我们一种异步的感觉,这并不是正统的方法,但是也不失为一种曲线救国方式,当然很多情况下这种方式也不适用,比如我们希望提交完成表单后从服务器取回点什么东西,这种方法显然就不行了,这里我们还需要真正的异步提交表当。
(二)jquery异步提交表单
这里介绍的是jquery的一种提交表单的插件ajaxupload,使用方式也是比较简单的
<body>
<form action="/hehe" method="post">
<input type="text" value="hehe"/>
<input type="button" value="upload" id="upload"/>
<!--<input type="button" value="send" onclick="send()"/>-->
</form>
<script>
(function(){
new AjaxUpload("#upload", {
action: '/hehe',
type:"post",
data: {},
name: 'textfield',
onSubmit: function(file, ext) {
alert("上传成功");
},
onComplete: function(file, response) {
}
});
})();
</script>
</body>
这里贴出了主要的代码,在页面渲染完成之后,我们就使用一个自执行的函数给id为upload的按钮添加异步上传事件,new AjaxUpload(id,object)中的id对应的就是绑定对象的id,至于第二个参数中介绍一下data是附加的数据,name可以随意,onSubmit函数是上传文件之前的
这次给大家带来marquee元素如何实现滚动字体与图片的效果,marquee元素实现滚动字体与图片的效果的注意事项有哪些,下面就是实战案例,一起来看一下。
marquee元素可以实现简单的字体(图片等)的滑动等效果:
<style type="text/css">
#p01{
width: 500px;
}
</style>
<script type="text/javascript">
</script>
<marquee behavior="alertnate"><font size=30 color='red'></font></marquee>
<marquee direction=right bgcolor='#ff2233' behavior="alertnate"><font size=30 color='blue'></font></marquee>
<marquee id="m3" direction=down bgcolor='#dbdbdb' height=50px hspace=20px vspace=20px behavior="alertnate" scrollLeft=left onmouseover="this.stop()" onmouseout="this.start()"><font size=30 color='blue'></font></marquee>
<marquee id="m4" direction=up bgcolor='#00dbdb' behavior="alertnate"><font size=30 color='blue'></font></marquee><p id="p01"><marquee direction=right bgcolor='#ff2233' behavior="alertnate" scrolldelay=100><font size=30 color='blue'></font></marquee></p>
<input type="button" onclick="m3.stop();" value="m3.stop"></input>
<input type="button" onclick="m3.start();" value="m3.start"></input>
<button onclick="m4.stop();">m4.stop</button>
<button onclick="m4.start();">m4.start</button>