0
我知道答案可能會是很簡單的東西,但我失去了我的腦海裏沒有得到這個工作:不能正確的ID傳遞給.replaceWith()
<button id="buttonid<?php echo $i?>" onclick="addShift(this.id)">+</button>
<script>
function addShift(id){
alert(id);
$('#id').replaceWith("<h2>TEST</h2>");
}
</script>
警報顯示正確ID。但是我無法使用.replaceWith函數來工作。
$("button").replaceWith("<h2>TEST</h2>");
這是工作的方式。我在這裏大概缺少關於提交HTML ID到JavaScript的?謝謝!
非常感謝。我知道這件事很簡單,但我無法實現。你拯救了一天! – Cataras