Jump to content

.innerText -> Number


Recommended Posts

How do you know it is or is not being converted.  Need way more info.  Preferably a script snippet that can run and reproduce what you think is an issue.

Works for me:

#include <IE.au3>
$oIE = _IECreate()
_IEBodyWriteHTML($oIE,"<abc id='test'>1234</abc>")
$o = _IEGetObjById($oIE,'test')
$i = Number($o.InnerText)
ConsoleWrite($i & " " & IsNumber($i) & " " & ($i==1234) & @CRLF)

output:

1234 1 True

Edited by jdelaney
IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...