Предполагая, что у вашего div
есть идентификационное имя (имя селектора). Если это так, выберите selector
ID / Class, в приведенном ниже примере ID = mySelector
.
Пример.
<div id="mySelector">New content</div>
Вам просто нужно получить доступ к значению этого селектора. так как вам нужно это в вашей кнопке нажмите ниже код.
function myFunction() {
document.getElementById("mySelector").innerHTML = "New content";
}
<p id="mySelector">Old content</p>
<button onclick="myFunction()">Click me</button>
Чтобы получить значение mySelector
, используйте следующий код
var theValueYouNeed = document.getElementById("mySelector").innerHTML;
alert(theValueYouNeed);
Console.log(theValueYouNeed); //another option to view the value.
ИЛИ
var theValueYouNeed = document.getElementById("mySelector");
alert(theValueYouNeed);
Console.log(theValueYouNeed); //another option to view the value.