我試圖通過在jQuery中使用text()函數將div中的文本更改爲另一個文本。它工作正常,但速度太快。無論如何推遲這個文本()函數,以便我可以正確查看更改。這是代碼。請看看它。感謝提前:)如何在jQuery中延遲文本函數
$('.main .title').text("Changed title!");
$('.main .description').text("Changed Description");
.main {
background-color: orange;
color: white;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="main">
<div class="title">
<p>This title text should be changed</p>
</div>
<div class="description">
<p>This description should als be changed</p>
</div>
</div>
如果答案是幫助完整,那麼請放棄註冊 –
我做了,但因爲我有不到15的聲譽,它不接受:| – Harish