讨论 » 创建请求

How to write user script to replace inner html

§
发表于:2022-02-01

My div id is ," my_age" and inner html property is "45"

So I want to change inner html as '56'

What are the java script code to write for tamper monkey....pls help me

§
发表于:2022-02-01

I think property can mean a lot of things, so you should be more specific.

document.querySelector("#myage , .myage").innerHTML = '56';

You might actually be talking about innerText instead of innerHTML.

§
发表于:2022-03-20

To briefly explain the differences, here's some code:

var div = document.createElement("div"); // <div></div>

div.innerText = "<h1>Hello</h1>"; // <div>"<h1>Hello</h1>"</div>
div.innerHTML = "<h1>Hello</h1>"; // <div><h1>"Hello"</h1></div>

And here's the result of the code:

<h1>Hello</h1>

Hello

§
发表于:2022-03-23

I think the above has already answered your question. But try the method that is described on the casinoshunter. It seems to me that he will be more working in the end.

Deleted user 821489
§
发表于:2022-08-08

var html = document.getElementsByTagName('html')[0];
// do something in html.TAG_NAME
html.innerHTML = html.innerHTML;

发表回复

登录以发表回复。