JQuery 追加不起作用?

发布于 2024-12-03 04:20:15 字数 1104 浏览 0 评论 0原文

我有一个用 Smarty 编译的 PHP 模板。在此代码中,我嵌入了 div 部分,类似于:

 <div>
 <div id="services" style="margin-top: 5px; width: 100%; display:none;">
 <div id='blocking' style="float: left; width: 100%;">
    <div id="div1" ...>
    </div>

    <div id="div2" style="float: left; height:100px; width: 100%; margin-top: 4px; margin-bottom:4px;">
    <table id="list" width="100%">
    <thead>
    <tr> 
      <th width="30%" class="tablaIzq">Lists</th> 
      <th width="70%" class="tablaIzq">Description</th> 
    </tr>
    </thead>
    <tbody id="LBBody">                 
    </tbody>
    </table>
    </div>
</div>
</div>
</div> 

A webservice es call using ajax+json... 我想将我收到的一些数据放入 tbody LBBody 中,但是当我尝试使用 jquery 的附加时,什么也没有附加。

它是这样完成的:

$("#LBBody").append('<tr><td class="tablaIzq" style="font-weight: normal; height: 22;" colspan="3">Hi</td></tr>')

我是否错误地使用了追加?

谢谢并致以诚挚的问候。

I have a PHP template that is compiled with Smarty. In this code I have embedded div sections, similar to this:

 <div>
 <div id="services" style="margin-top: 5px; width: 100%; display:none;">
 <div id='blocking' style="float: left; width: 100%;">
    <div id="div1" ...>
    </div>

    <div id="div2" style="float: left; height:100px; width: 100%; margin-top: 4px; margin-bottom:4px;">
    <table id="list" width="100%">
    <thead>
    <tr> 
      <th width="30%" class="tablaIzq">Lists</th> 
      <th width="70%" class="tablaIzq">Description</th> 
    </tr>
    </thead>
    <tbody id="LBBody">                 
    </tbody>
    </table>
    </div>
</div>
</div>
</div> 

A webservice es called using ajax+json... and I would like to put some of the data that I receive in the tbody LBBody but when I try using jquery's append nothing is appended.

It's done like this:

$("#LBBody").append('<tr><td class="tablaIzq" style="font-weight: normal; height: 22;" colspan="3">Hi</td></tr>')

Am I using append wrongly?

Thanks and best regards.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

毁我热情 2024-12-10 04:20:15

尝试将附加代码包含在 $(document).ready() 块中,如下所示

$(document).ready(function() {
    $("#LBBody").append('<tr><td class="tablaIzq" style="font-weight: normal; height: 22;" colspan="3">Hi</td></tr>');
});

Try including your append code in a $(document).ready() block like this

$(document).ready(function() {
    $("#LBBody").append('<tr><td class="tablaIzq" style="font-weight: normal; height: 22;" colspan="3">Hi</td></tr>');
});
戏剧牡丹亭 2024-12-10 04:20:15

确保将附加代码放在实际元素之后。否则将无法工作

Be sure you put your append code AFTER your actual elements. Otherwise it won't work

你与昨日 2024-12-10 04:20:15

您是否尝试过检查 DOM 以查看元素是否被附加?我有一种感觉,也许 style 参数中的 height 属性正在将新元素设置为以 0 高度显示。

要解决这个问题,您应该告知相应的值加上统一:

style="height:22px;"

Have you tryed to inspect your DOM to see if the elements are being appended or not? I have a feeling that maybe the height property inside your style parameter is setting your new elements to be displayed with a 0 height.

To fix that, you should inform the corresponding value plus the unity:

style="height:22px;"

莫言歌 2024-12-10 04:20:15

PHP 和 Javascript(或 JQuery)不能一起工作。如果您尝试一起使用它们,整个 Javascript 将停止运行。因此,避免这种情况的最佳方法是在使用 PHP 后使用 JQuery。完成 PHP 代码后,以“?>”结束它标签,然后使用 JQuery,而不使用 PHP 的 echo 或 print 语句。

这是错误的代码,javascript 无法在此工作:

<?php
echo '<script type="javascript/text">...</script>';
?>

这是正确的实现:

<?php
echo '...';
?>
<script type="javasrcipt/text">...</script>

希望这会有所帮助!

PHP and Javascript (or JQuery) do not work together. If you try to use them together, the entire Javascript stops running. So, the best way to avoid this is to use JQuery AFTER using your PHP. After you've finished your PHP code, end it with a "?>" tag and then use JQuery without using PHP's echo or print statement.

This is the wrong code and javascript won't work in this:

<?php
echo '<script type="javascript/text">...</script>';
?>

This is the correct implementation:

<?php
echo '...';
?>
<script type="javasrcipt/text">...</script>

Hope this helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文