我已经在一个需要一些定制的 SUP 项目上工作了几天,我得到了错误Script Alert Error: Object expected
我介绍的代码是:
$('#bottomOfStart_ScreenForm').before('<div style="display:none">');
$('#bottomOfStart_ScreenForm').before('<label style="display:none" for="Descarca_PK">Descarca</label>');
$('#bottomOfStart_ScreenForm').before('<input style="display:none" class="rightcheckbox" type="checkbox" name="Descarca_PK" id="Descarca_PK" sup_html_type="checkbox" sup_default_value="true" checked="yes" disabled="disabled"></input>');
$('#bottomOfStart_ScreenForm').before('</div>');
(这是代码的链接,似乎它被解释了:P http://img22.imageshack.us/img22/927/axq6.jpg)
我什至尝试过类似的东西
var bottomOfFormElem = document.getElementById("bottomOfStart_ScreenForm");
bottomOfFormElem.innerHTML = "<p> </p>";
我仅在 Windows CE 6.1 Intermec CK3 设备上收到此错误,但在我使用过的任何其他设备(仅限 Android)上它工作得很好。
你对我能做什么有什么建议吗?