gpt4 book ai didi

javascript - Android webview不显示Javascript Append

转载 作者:行者123 更新时间:2023-11-28 09:22:53 25 4
gpt4 key购买 nike

我正在为我的 Android 应用程序使用 webview,我从我的在线服务器获取我的 php、html 文件。问题是,当我在桌面浏览器中尝试时,它会显示附加文本,但当我在 Android 手机上尝试时,它不会显示。

请注意,Javascipt 在我的 webview 的设置中已启用。我还使用 JQuery Mobile 插件。

代码:

function loadMore()
{
$('#htmlDivID').append("HELLO WORLD.");
}

最佳答案

尝试使用 jquery mobile:

function loadMore(){
$('#htmlDivID').append("HELLO WORLD.");
}
$(document).on('pageinit', function(event){
loadMore();
});

来自文档:

Triggered on the page being initialized, after initialization occurs. We recommend binding to this event instead of DOM ready() because this will work regardless of whether the page is loaded directly or if the content is pulled into another page as part of the Ajax navigation system.

关于javascript - Android webview不显示Javascript Append,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14768198/

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