我目前正在开发一个phonegap应用程序,我昨天添加了ChocolateChip-UI,我遇到了一个问题。我的Javascript代码无法正常运行。如果我想通过id获取元素,它只返回null。是否需要使用其他函数来更改html标签内的值?我甚至尝试使用Chromium中的控制台获取值,但我只是返回null。我的HTML代码如下所示:
$(document).ready(function () {
$("button").click(function () {
$(this).closest('tr').remove();
$(".row-id").each(function (i){
$(this).text(i+1);
});
});
});
答案 0 :(得分:0)
我找到了一个解决方案:
我只需将document.getElementbyId()
代码放在:
<script>
$(function() {
var opts = {
tabs : 4,
icons : ["run", "statistics", "settings", "donate"],
labels : ["Run", "Statistics", "Settings", "Donate"],
selected : 1
};
$.UITabbar(opts);
//My document.getElementbyId code goes here
});
</script>
通过将函数调用放到获取脚本标记内部元素的函数中,将解决它。