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.
主页:
$(".aclass").css("background","green"); //How to bind this on a dynamically called element // like $(".placeholder").load("page.php");
page.php 包含:
<div class="aclass">Some text</div>
如果我调用该加载函数,则 css 不起作用,但如果应用,则在同一页面上工作
使用加载完成后执行的加载回调函数。
$(".placeholder").load("page.php",function(){ $(".aclass").css("background","green"); });