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);
}
感謝很多人更換
使用控制檯。 – Doorknob