gpt4 book ai didi

javascript - 为什么不能从 javascript 更改 asp.net 中的标签文本?

转载 作者:行者123 更新时间:2023-11-28 14:51:50 25 4
gpt4 key购买 nike

这是 html 代码:

<table align='right' >
<tr>
<td><asp:Label ID="lblEmail" runat="server" Text=""></asp:Label></td>
<td > <div class="g-signin2" data-onsuccess="onSignIn" data-theme="dark">
</div></td>
</tr>
</table>

这是我的函数脚本:

<script>
function onSignIn(googleUser) {
var profile = googleUser.getBasicProfile();
document.getElementById('lblEmail').InnerHTML = profile.getEmail();
// alert(profile.getEmail());

};
</script>

lblEmail 无法显示值,为什么?

我尝试使用警报,它显示电子邮件正常。

最佳答案

输入带有小写 i 的innerHTML:

<script>
function onSignIn(googleUser) {
var profile = googleUser.getBasicProfile();
document.getElementById('lblEmail').innerHTML = profile.getEmail();
// alert(profile.getEmail());

};
</script>

关于javascript - 为什么不能从 javascript 更改 asp.net 中的标签文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44197618/

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