Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
608 views
in Technique[技术] by (71.8m points)

applescript - How can I use Javascript to manipulate text inside '<div contenteditable' from a website?

Please help, how can I change (or get) the text "19000" in the image using javascript? I need to know it to automate tasks filling in some blanks logging in website and more. Thank you.https://shopee.vn/buyer/login This is  a site I want to crawl the informations.

https://shopee.vn/buyer/login This is a site I want to crawl the informations.

question from:https://stackoverflow.com/questions/66067855/how-can-i-use-javascript-to-manipulate-text-inside-div-contenteditable-from-a

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you give the div tag an id attribute such as

<div id="my_id">Some Text</div>

then you can can change the text it contains from JavaScript using

document.getElementById("my_id").innerHTML = "New text";

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...