我有這個₹符號我想刪除它,這樣我可以在我的表導出帶有此標誌的出口是給錯誤這樣如何刪除這個符號₹從表
我想要的東西
$(document).ready(function(){
var table = $('#a').html();
table.replace("₹",'');
console.log(table);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<div id="a">
<table id="table">
<tr>
<th>vcajasjhhjd</th>
<th>jdshbdfhfdh</th>
</tr>
<tr>
<td>abcd ₹ njdhjdrhjr</td>
<td>jdhjhjfhjghghg₹jdshdfhs₹</td>
</tr>
</table>
</div>
控制檯不來是空白的,你可以解決它 –
我沒放的console.log代碼,因爲它是多餘的 - 你可以在DOM中看到輸出 –