gpt4 book ai didi

javascript - onclick 发送 2 个变量

转载 作者:行者123 更新时间:2023-11-28 05:09:41 24 4
gpt4 key购买 nike

我有一个 while 循环语句来回显数据库中的一些信息。每个循环都有一个按钮。当我单击该按钮时,我想发送 2 个值,并使用这 2 个值进行更新功能。到目前为止我只得到了 1 个。另一个是空白的。我想通过 javascript 或普通 href=""这是我的 while 循环获取 id

while ($row = mysqli_fetch_array($query)){
$productimg = $row["Product_Image"];
$productname = $row["Product_Name"];
$price = $row["Product_Price"];
$quantity = $row["Quantity"];
$seller = $row["Product_Seller"];
$cartid = $row["Cart_ID"];
$newimg = str_replace(' ', '%20', $productimg);
echo "<div class='cartcontent'>";
echo "<div class='s1'><a href='itemview.php?ID=$productname'><img src=$newimg /></a></div>";
echo "<div class='s2'><div class='s2t'><a href='itemview.php?ID=$productname'>$productname </a> &nbsp; <h2>Sold By $seller</h2></div><div class='s2b'><a href='?deletecartid=$cartid'>Delete</a> &nbsp;&nbsp; <a href='?saveforlaterid=$cartid'>Save for later</a></div></div>";
echo "<div class='s3'>$price</div>";
echo "<div class='s4'>";
include 'itemquantity.php';//this page class="qty2"
echo "&nbsp;&nbsp;<a href='?updateid=$cartid?quant=".$_GET['qty2']."'>Update</a>";//this is what i am struggling with
echo "</div></div>";
echo "?updateid=$cartid?quant=".$_GET['test']."";//just to see what i am getting
$count++;
}

我什至尝试从 itemquantity.php 内的下拉列表中的 onchange 方法的 javascript 中获取值,其类为 qty2。

function getquant(){
var e = document.getElementsByClassName("qty2")[0];
var qty = e.options[e.selectedIndex].value;
alert(qty);
document.getElementById("test").innerHTML = qty;
};

这是 isset 获取函数

if(isset($_GET['updateid'])){
$updateid = $_GET['updateid'];
$updatequant = $_GET['quant'];
$query = mysqli_query($conn, "UPDATE cart SET Quantity = '$updatequant' WHERE Cart_ID = '$updateid'");}

我看过一些关于 XMLhtml 和 cookie 的信息,但它们有些不起作用,所以我不知道还能做什么,哈哈。

如果有人知道如何或有工作方法,将不胜感激!

编辑:只是为了澄清 $_GET['qty2'] 位于 itemquantity.php 内部(包含在我的 while 循环中),它是一个下拉列表。这就是 itemquantity.php 的样子

<select placeholder='quantity' class='qty2' id='qty2' onchange="getquant()" value='<?php print_r($cartid);?>'>
<option value='1' <?php if ($quantity == '1') echo ' selected="selected"'; ?>>1</option>
<option value='2' <?php if ($quantity == '2') echo ' selected="selected"'; ?>>2</option>
<option value='3' <?php if ($quantity == '3') echo ' selected="selected"'; ?>>3</option>
<option value='4' <?php if ($quantity == '4') echo ' selected="selected"'; ?>>4</option>
<option value='5' <?php if ($quantity == '5') echo ' selected="selected"'; ?>>5</option>
<option value='6' <?php if ($quantity == '6') echo ' selected="selected"'; ?>>6</option>
<option value='7' <?php if ($quantity == '7') echo ' selected="selected"'; ?>>7</option>
<option value='8' <?php if ($quantity == '8') echo ' selected="selected"'; ?>>8</option>
<option value='9' <?php if ($quantity == '9') echo ' selected="selected"'; ?>>9</option>

下拉列表位于 class='qty2' id='qty2' onchange="getquant()"value=' 的 get 方法中

最佳答案

通过在放入静态 HTML 之前停止 PHP 解析器,您可以更轻松地解决此问题。

以下是您应该如何编写循环的代码

while ($row = mysqli_fetch_array($query)){
$productimg = $row["Product_Image"];
$productname = $row["Product_Name"];
$price = $row["Product_Price"];
$quantity = $row["Quantity"];
$seller = $row["Product_Seller"];
$cartid = $row["Cart_ID"];
$newimg = str_replace(' ', '%20', $productimg);

// end PHP processor
?>
<div class='cartcontent'>
<div class='s1'><a href='itemview.php?ID=<?php print_r($productname);?>'>
<img src='<?php print_r($newimg);?>' /></a></div>

etc etc.

<?php
// now start the PHP processor again and finish out the loop


$count++;
}
<小时/>

包含此行的问题:

&nbsp;&nbsp;<a href='?updateid=$cartid?quant=".$_GET['qty2']."'>Update</a>

这是你在做的?updateid=$cartid?quant= 应该是

?updateid=$cartid&quant=

多个查询值应使用 & 分隔,因为 ? 仅属于查询字符串的开头

关于javascript - onclick 发送 2 个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41472503/

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