gpt4 book ai didi

javascript - 如何获取img标签的值?

转载 作者:行者123 更新时间:2023-12-02 19:05:19 25 4
gpt4 key购买 nike

如何获取img标签的值???在img标签中,我们有一个名为“Value”的属性,所以我想知道如何在javascript中访问这个值属性???我使用这段代码:

function addcart()
{
$cartvalue=confirm("Would You like to add This Product to Your Cart?");
if($cartvalue)
{
var product=document.getElementById('prod1').value;
alert(product);

}
}

这里 prod1 是 img 标签的值但它在警报中显示为未定义

最佳答案

尝试类似的事情

var product=document.getElementById('prod1').getAttribute('value');

关于javascript - 如何获取img标签的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14359913/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com