提问人:irakli777 提问时间:2/1/2023 最后编辑:irakli777 更新时间:2/1/2023 访问量:29
Jquery,在功能中,我有价值,但是当我将其插入html时,它没有显示
Jquery, Inside funtion I have value but when I am inserting it to html it does not show
问:
<html>
<head>
<title>example</title>
</head>
<body>
<tr>
<td class="data">Player IP:</td>
<td class="value" id="user_ip"></td>
</tr>
</body>
</html>
我有以下问题。我在控制台 .log 中获得了 Ip,但是当我将其插入 html 元素时,它没有显示。任何解决方案
function getIp(data) {
var ip = data; //data.comments[0].metadata.system.ip_address;
ip = ip.toString();
console.log("ip", ip);
console.log("before", $("#user_ip").html())
$("#user_ip").html(ip);
console.log("after", $("#user_ip").html()) // this does not contain ip
console.log("Ip added");
return ip;
}
console.log("returns", getIp("123"));
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="user_ip"></div>
答: 暂无答案
评论
data
user_ip
console.log($("#user_ip"))
console.log($("#user_ip").length)
=== 1