2013-12-18 203 views
0

我正在爲我的網站編寫一個cms頁面。其中一部分是爲我的博客寫預覽組件。我有一個表單和一個預覽按鈕,用於激活一個Javascript,它將輸入到文本區域中的html放置在div元素中進行測試。一切工作正常,但問題是,它只能爲每個頁面加載一次。所以我無法測試一些東西,添加一些代碼並重新測試它。任何想法如何使多個測試成爲可能?JavaScript只執行一次

代碼格式:

<form> 
    <textarea rows="30"cols="30" name="blogpost" style="width:500px;resize:none;" autofocus placeholder="Enter your new blogpost here!"></textarea> 
    </br>  
    <input type = "submit" value="post"> 
    <input type = "button" id="testknop" value="previeuw" onclick="previeuwpost(this.form, this.form.blogpost);"> 
    <input type="reset" /> 
</form> 

JavaScript代碼:

function previeuwpost(form, text){ 
    $("#previeuwbox").replaceWith(text.value); 
} 

感謝很多人更換

+2

使用控制檯。 – Doorknob

回答

4

replaceWith手段。 因此,您點擊後,$("#previeuwbox")已消失。

請使用:

$("#previeuwbox").html(text.value); 
+0

這很好,你是英雄! –