我用下面,如何在jQuery中的div中獲取span標記並分配文本?
<div id='message' style="display: none;">
<span></span>
<a href="#" class="close-notify">X</a>
</div>
現在我想找到DIV中的跨度和分配文本吧...
function Errormessage(txt) {
$("#message").fadeIn("slow");
// find the span inside the div and assign a text
$("#message a.close-notify").click(function() {
$("#message").fadeOut("slow");
});
}
@macek,對不起編輯。 – rahul 2010-04-20 06:46:00
@rahul,我有點困惑。不用擔心:) – 2010-04-20 06:46:24