Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用 kendo mobile 显示视图时,我有未显示的地图和显示为 null 的 div 高度值。我想在视图加载完成时运行一个函数以显示地图并计算 div 高度,任何人都可以提前谢谢你。
使用移动视图的显示事件。当视图可见时触发 show 事件。
<div data-role="view" data-show="showMap"> <script> function showMap() { ///code to display map when view becomes visible } </script>
用javascript?