Just Javascript (as requested)
(只是Javascript(根据要求))
Add this function somewhere on your page (preferably in the <head>
)
(在页面的某处添加此功能(最好在<head>
))
function clearBox(elementID)
{
document.getElementById(elementID).innerHTML = "";
}
Then add the button on click event:
(然后在点击事件上添加按钮:)
<button onclick="clearBox('cart_item')" />
In JQuery (for reference)
(在JQuery中(供参考))
If you prefer JQuery you could do:
(如果你更喜欢JQuery,你可以这样做:)
$("#cart_item").html("");
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…