我喜欢使用 onclick 函数更改 div 的标题。我是 .js 的新手
function changeTitle() {
document.getElementById("amul").attr('title', 'Item Added');
}
这是我插入 onclick 功能的输入按钮
<input type="button" class="button2" id="item1" value="Add to Cart" title="Add to Cart" onClick="addItem_check('item_listing_100','ItemTable','100','Amul Butter','500','g','150.00','1','kg','200.00','2','kg','250.00'); amul.style.backgroundColor='#c2ed5c'; if(this.value=='Add to Cart') {this.value = 'Remove from Cart'}; item1(); "/>
这是我喜欢更改标题的 div
<div class="center_prod_box" id="amul">. . . </div>