gpt4 book ai didi

javascript - JQuery .html() 不工作

转载 作者:行者123 更新时间:2023-11-30 14:56:03 25 4
gpt4 key购买 nike

我正在使用 Onsen UI + JQuery 和 .html() 函数不工作,参见:https://jsfiddle.net/w8904ztc/1/

<body>
<ons-page>
<ons-toolbar>
<div class="center">Clone</div>
</ons-toolbar>

<ons-tabbar swipeable position="auto">
<ons-tab page="tab1.html" label="Home" icon="ion-home, material:md-home" active>
</ons-tab>
<ons-tab page="tab2.html" label="Settings" icon="md-settings">
</ons-tab>
</ons-tabbar>
</ons-page>

<template id="tab1.html">
<ons-page id="Tab1">
<p style="text-align: center;">
This is the first page.
</p>
</ons-page>
</template>

<template id="tab2.html">
<ons-page id="Tab2">
<div class="center" id="usernamespan"></div>
<p style="text-align: center;">
<ons-button id="logout" name="logout" onclick="logout();">Logout</ons-button>
</p>
</ons-page>
</template>
<script type="text/javascript" src="cordova.js"></script>
<script>
function logout() {
window.localStorage.clear();
window.location.href = "index.html";
}
var username = localStorage.username;
ons.notification.toast({
message: 'Willkommen ' + username,
timeout: 4000
});

$('usernamespan').html("Hallo Welt" + username);

</script>
</body>

简单的 JavaScript 也不起作用,已经尝试过 .getElementById()

window.document.getElementById("#usernamespan").innerHTML = "Something";

returns => Uncaught TypeError: Cannot set property 'innerHTML' of null

有什么想法吗?

最佳答案

您需要将目标 ID 指定为#IDOFDIV 或者如果它是一个类 .CLASSOFID。您还需要告诉 jquery 在尝试找到它并向其添加 html 之前等待页面完成加载,因为它可能还不在页面上。

这是使用 $(document).ready() 调用完成的,然后传递一个函数,其中包含您希望在页面加载完成后执行的代码。

  $(document).ready(function(){
function logout() {
window.localStorage.clear();
window.location.href = "index.html";
}
var username = localStorage.username;
ons.notification.toast({
message: 'Willkommen ' + username,
timeout: 4000
});

$('#usernamespan').html("Hallo Welt" + username);
})

关于javascript - JQuery .html() 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47269185/

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