我目前正在开发一个 WordPress 项目,我有一个使用 WooCommerce 建立的网上商店,作为一个实践项目,我决定为客户使用退款系统,他们可以在其中发送“退款请求”网站管理员接受或拒绝。
退款选项卡分为 3 个不同的页面,在第一页客户通过输入她的姓名、邮政编码和订单号来确认他/她的订单,在第二页客户可以选择他们想要订购的产品和他们的数量通过输入数字,并检查产品的复选框和第三页只是一个确认页面,客户也可以在其中发送消息,然后他们按下“发送请求按钮”。按下按钮后,请求选项卡中的信息将插入到名为 wp_refundrequests 的自定义表中,该表用于在管理页面上显示所有请求。
我的问题是,在第二页上,客户应该选择他们想要退款的某些产品的数量,但在我的代码中始终显示最大数量,我无法理解如何让它工作,它只需要用户输入的数量。
这是第二页的代码,问题出在:
<div class="Etusivu">
<form action="" method="post" style="border:0px solid #ccc">
<legend><b>Product refund</b></legend>
<div class="step">
<legend>Step 2/3</legend>
</div>
<br />
<p class="important">Order information</p>
<br />
<div class="valitse">
<p class="important">Choose all of the products you want to refund.</p>
</div>
<hr>
<script>
//function for making a checkbox to check all checkboxes
function toggle(source) {
checkboxes = document.getElementsByName('productinfo[]');
for(var i=0, n=checkboxes.length;i<n;i++) {
checkboxes[i].checked = source.checked;
}
}
</script>
<input type='checkbox' onClick='toggle(this)' />
<p class="selectall">Select all products</p>
<label>The order:</p>
<br />
<?php
//Gets and displays data based on certain variables from the database, connects quantity and product name into one string in
$order = wc_get_order( $ordernumber );
foreach ($order->get_items() as $item ){
$unitprice = $item->get_total() / $item->get_quantity();
// This is the part that currently gets the quantity value for the next page/the refund request
echo "<input type='checkbox' name='productinfo[]' value='" . " " . $item->get_name() . " , " . $item->get_quantity() . " QTY" . " | " . $item->get_total() ."'>";
echo '<p>';
echo __('Product name: ' ) . $item->get_name() . '<br>';
if($item->get_quantity() > 1) {
echo "Quantity: " . "<input type='number' name='numberqty' value='" . $item->get_quantity() . "'max='" .$item->get_quantity() . "' min='1' > " . "<br/>";
}
else {
echo __('Quantity: ' ) . $item->get_quantity() . '<br>';
}
if ($item->get_quantity() > 1) {
echo __('Product price: ') . $unitprice . '€' . '<br/>';
}
echo __('Products total: ' ) . wc_price($item->get_total()) . '</p>' . '<br/>';
}
echo '<p>'. __('Order total: ') . $order->get_total() . '</p>';
?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="submit" id='check' value="Next"/>
<script>
//Checks if any checkboxes have been checked, if not, displays an error
function checkBoxCheck() {
if($('input[name="productinfo[]"]:checked').length) {
console.log("at least one checked");
return true;
}
else {
alert("Select at least 1 product.");
return false;
}
}
//runs the script for checking the checkboxes
$('#check').on('click', checkBoxCheck);
</script>
</label>
<input type="hidden" name="page" value="2">
</form>
<br />
</div>
</body>
</html>
<?php
编辑:为了更清楚地说明这一点,这里的问题是我正在制作一个客户可以用来退回某些产品的系统,在第 2/3 页上,我目前遇到了问题,用户可以查看他的订单包含的所有产品,所有产品都有自己的复选框,因此用户可以选择他们想要退款的产品。现在,当用户选择一个产品并按“下一步”时,所选信息将显示在下一页 3/3 上。该页面上显示的值是产品名称、产品价格和产品数量。但是,数量始终与客户订购的数量相同,并且在 2/3 页(用户选择他想要退款的产品),我希望能够输入我想要的某些产品的数量退款,并将此值放在复选框数组中。
例如。我买了 5 根电缆,但我只想退回其中的 2 根,所以我在现有的输入字段中输入 2。
最佳答案
首先,您必须更改以下内容:
echo "<input type='checkbox' name='productinfo[]' value='" . " " . $item->get_name() . " , " . $item->get_quantity() . " QTY" . " | " . $item->get_total() ."'>";
到
echo "<input type='checkbox' class='" . $item->get_id() . "checkBox' name='productinfo[]' value='" . " " . $item->get_name() . " , " . $item->get_quantity() . " QTY" . " | " . $item->get_total() ."'>";
还有这个:
if($item->get_quantity() > 1) {
echo "Quantity: " . "<input type='number' name='numberqty' value='" . $item->get_quantity() . "'max='" .$item->get_quantity() . "' min='1' > " . "<br/>";
}
对此:
if($item->get_quantity() > 1) {
echo "Quantity: " . "<input type='number' class='" . $item->get_id() . "' name='numberqty' value='" . $item->get_quantity() . "'max='" .$item->get_quantity() . "' min='1' onchange='changeCheckBoxValue(this.className)'> " . "<br/>";
}
如果您在项目上没有 get_id(),请使用任何唯一标识符。
下面这段代码负责触发改变复选框值的事件
onchange='changeCheckBoxValue(this.className)
最后将以下函数添加到您的代码中:
function changeCheckBoxValue(className) {
var checkBox = document.getElementsByClassName(className + 'checkBox')[0];
var currentValue = checkBox.value;
var wantedAmount = document.getElementsByClassName(className)[0].value;
checkBox.value = currentValue .replace(new RegExp('[0-9]* QTY'),wantedAmount + ' QTY');
}
这将更新复选框的值
祝你好运
关于javascript - 使用用户输入更改或更新复选框值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53079357/
我正在学习如何使用Nokogiri,根据这段代码我遇到了一些问题:require'rubygems'require'mechanize'post_agent=WWW::Mechanize.newpost_page=post_agent.get('http://www.vbulletin.org/forum/showthread.php?t=230708')puts"\nabsolutepathwithtbodygivesnil"putspost_page.parser.xpath('/html/body/div/div/div/div/div/table/tbody/tr/td/div
我有一个Ruby程序,它使用rubyzip压缩XML文件的目录树。gem。我的问题是文件开始变得很重,我想提高压缩级别,因为压缩时间不是问题。我在rubyzipdocumentation中找不到一种为创建的ZIP文件指定压缩级别的方法。有人知道如何更改此设置吗?是否有另一个允许指定压缩级别的Ruby库? 最佳答案 这是我通过查看rubyzip内部创建的代码。level=Zlib::BEST_COMPRESSIONZip::ZipOutputStream.open(zip_file)do|zip|Dir.glob("**/*")d
类classAprivatedeffooputs:fooendpublicdefbarputs:barendprivatedefzimputs:zimendprotecteddefdibputs:dibendendA的实例a=A.new测试a.foorescueputs:faila.barrescueputs:faila.zimrescueputs:faila.dibrescueputs:faila.gazrescueputs:fail测试输出failbarfailfailfail.发送测试[:foo,:bar,:zim,:dib,:gaz].each{|m|a.send(m)resc
很好奇,就使用rubyonrails自动化单元测试而言,你们正在做什么?您是否创建了一个脚本来在cron中运行rake作业并将结果邮寄给您?git中的预提交Hook?只是手动调用?我完全理解测试,但想知道在错误发生之前捕获错误的最佳实践是什么。让我们理所当然地认为测试本身是完美无缺的,并且可以正常工作。下一步是什么以确保他们在正确的时间将可能有害的结果传达给您? 最佳答案 不确定您到底想听什么,但是有几个级别的自动代码库控制:在处理某项功能时,您可以使用类似autotest的内容获得关于哪些有效,哪些无效的即时反馈。要确保您的提
假设我做了一个模块如下:m=Module.newdoclassCendend三个问题:除了对m的引用之外,还有什么方法可以访问C和m中的其他内容?我可以在创建匿名模块后为其命名吗(就像我输入“module...”一样)?如何在使用完匿名模块后将其删除,使其定义的常量不再存在? 最佳答案 三个答案:是的,使用ObjectSpace.此代码使c引用你的类(class)C不引用m:c=nilObjectSpace.each_object{|obj|c=objif(Class===objandobj.name=~/::C$/)}当然这取决于
我正在尝试使用ruby和Savon来使用网络服务。测试服务为http://www.webservicex.net/WS/WSDetails.aspx?WSID=9&CATID=2require'rubygems'require'savon'client=Savon::Client.new"http://www.webservicex.net/stockquote.asmx?WSDL"client.get_quotedo|soap|soap.body={:symbol=>"AAPL"}end返回SOAP异常。检查soap信封,在我看来soap请求没有正确的命名空间。任何人都可以建议我
如何正确创建Rails迁移,以便将表更改为MySQL中的MyISAM?目前是InnoDB。运行原始执行语句会更改表,但它不会更新db/schema.rb,因此当在测试环境中重新创建表时,它会返回到InnoDB并且我的全文搜索失败。我如何着手更改/添加迁移,以便将现有表修改为MyISAM并更新schema.rb,以便我的数据库和相应的测试数据库得到相应更新? 最佳答案 我没有找到执行此操作的好方法。您可以像有人建议的那样更改您的schema.rb,然后运行:rakedb:schema:load,但是,这将覆盖您的数据。我的做法是(假设
关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。
给定这段代码defcreate@upgrades=User.update_all(["role=?","upgraded"],:id=>params[:upgrade])redirect_toadmin_upgrades_path,:notice=>"Successfullyupgradeduser."end我如何在该操作中实际验证它们是否已保存或未重定向到适当的页面和消息? 最佳答案 在Rails3中,update_all不返回任何有意义的信息,除了已更新的记录数(这可能取决于您的DBMS是否返回该信息)。http://ar.ru
我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t