2
我想知道我是否可以聲明html作爲變量。換句話說,這樣的事情:用html聲明一個變量,並通過使用.insertAfter插入變量
$(document).ready(function(){
var Bold="Yes! There is bold in the text above!!";
var NoBold="No... There isn't any bolded text in the paragraph above..";
var BoldButton="<input class="BoldButton" type="button" value="bold" id="WelcomeBoldButton">";
$(BoldButton)
.insertAfter('#intro');
});
,然後使用.insertAfter動作,把它放到我的網頁在不同的時間間隔:
$(BoldButton).insertAfter(#'intro');
這似乎並沒有工作,我是接近的東西雖然?
哇,對不起,我不得不打擾你! 它實際上仍然不工作,但讓我再次檢查它。 – Qcom 2010-07-29 21:20:08
實際上,'insertAfter()'可能是他想要的。 http://api.jquery.com/insertAfter/ – 2010-07-29 21:21:09
而這個:var BoldButton =「」;應該是var BoldButton =''; – 2010-07-29 21:21:55