我如何獲得img標籤的價值?在img標籤中,我們有一個名爲「Value」的屬性,所以我想知道如何在javascript中訪問這個值屬性? 我用這個代碼:如何獲得img標籤的價值?
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標籤 的價值,但它警告
你能告訴我們HTML標記嗎? –
'prod1'是img標籤或其'id'的'value'嗎?發佈您的HTML請 –