gpt4 book ai didi

javascript - 如何在警告框中显示变量值?

转载 作者:太空狗 更新时间:2023-10-29 13:09:48 26 4
gpt4 key购买 nike

我想在警告框中显示变量值。

请看下面的代码:

<script>
function check() {
var content = document.getElementById("one").value;
alert(content);
}
</script>
<body onload="check()">
<div style="position: absolute; z-index: 9; width: 450px; top: 38px; margin-left: 176px;">
<style>
div#layout {
margin:0px;
padding:px;
width:450px;
margin:0px auto;
overflow:hidden;
}
</style>
<div id="layout">
<span id="one" style="display:none" ph="layout1" class="ione">yes</span>
<span id="two" style="display:none" ph="layout1" class="ione">no</span>
</div>
</div>
</body>

当我执行此代码时,它在警告框中显示未定义的值。跨度 id"one"中的值在不同的情况下会发生变化。我想每次都跟踪...所以我不能硬编码。

你能帮忙吗?

最佳答案

spans 在 html 中没有值

一个是span标签的id

在javascript中使用

document.getElementById('one').innerText;

在 jQuery 中使用

$('#one').text()

function check() {
var content = document.getElementById("one").innerText;
alert(content);
}

function check() {
var content = $('#one').text();
alert(content);
}

关于javascript - 如何在警告框中显示变量值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16623575/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com