怎么将html格式变成json数据

怎么将html格式变成json数据,第1张

<html>

<head>

<meta http-equiv=content-type content="text/htmlcharset=GBK">

</head>

<body>

<table border=0 cellspacing=0 cellpadding=0>

<tr>

<td id="a">sdfsd</td>

</tr>

<tr>

<td id="b">sdfsdf</td>

</tr>

<tr>

<td id="c">sdfsd</td>

</tr>

<tr>

<td id="d">sdfsdf</td>

</tr>

</table>

</body>

<script>

var jsonStr = "{\"a\":\"内容1\", \"b\":\"内容2\",\"c\":\"内容3\",\"d\":\"内容4\"}"

var jsonObj = eval("(" + jsonStr + ")")

for(var property in jsonObj){

var nodeObj = document.getElementById(property)

if(nodeObj)

nodeObj.childNodes[0].nodeValue = jsonObj[property]

}

</script>

</html>

1.把数据扒出来:

简答:

一般通过正则表达式re模块提取,或者是专门处理html的,比如BeautifulSoup。

详解:

如何用Python,C#等语言去实现抓取静态网页 模拟登陆网站

里面有你要的,所有的内容,自己看即可。

等看完了,还有问题,再来问。

(此处不给贴地址,请自己用google搜标题,就可以找到地址了)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8285150.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-15
下一篇 2023-04-15

发表评论

登录后才能评论

评论列表(0条)

保存