我有一個問題,如何在div標記中使用javascript替換()?我試過這樣:如何在div中使用替換?
<html>
<body>
<div id="ahoj">ahoj</div>
<script type="text/javascript">
document.write(document.getElementById("ahoj").replace("ahoj","hola"));
</script>
</body>
</html>
...但它不工作..任何想法?
是的,這就是我一直在尋找的! –