用 vbs 如何获取网页中 class 对应的内容 也就是17℃

用 vbs 如何获取网页中 class 对应的内容 也就是17℃,第1张

' 注意class的值中本身有引号,所以转为字符串时要再加个引号

s="<div class=""slider_degree"">17℃</div>"

一:

set re=new RegExp

repattern=">(+)<"

Set matches=reexecute(s)

set match=matches(0)

msgbox matchsubmatches(0)

二:

p=instr(s,">")+1

msgbox Mid(s,p,3)

法一通用,法二不通用但简单

Set mxh = CreateObject("MicrosoftXML>

你得提供源码与具体要求 简单的来说,vbs可以调用xml>

dim xp,url,MyStream

url=inputbox("输入网址")

if url&"a"<>"a" then

set xhp=createobject("microsoftxml>

<html>

<head>

<title>vbs练习</title>

<script language="vbscript">

sub showOnClick()

dim a

a=documentgetElementById("txt1")value

msgbox "欢迎"&a

end sub

</script>

</head>

<body>

<center>

<p align="center">

请输入名字:

</p>

<input type="text" value="" id="txt1" name="txt1" />

<br>

<input type="button" value="确定" id="but1" onClick="showOnClick()"/>

</center>

</body>

</html>

以上就是关于用 vbs 如何获取网页中 class 对应的内容 也就是17℃全部的内容,包括:用 vbs 如何获取网页中 class 对应的内容 也就是17℃、vbs怎么精确定位IE选项卡(在 *** 作中d出了一个新的网页)怎样获取这个新网页的信息、vbs读取网页代码里特定的一个字符后面的信息并输出到一个变量里!等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

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

原文地址: http://outofmemory.cn/web/10210621.html

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

发表评论

登录后才能评论

评论列表(0条)

保存