第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

訪問一行中的單個(gè)列,默認(rèn)情況下使用頁面加載時(shí)的單選按鈕選擇

訪問一行中的單個(gè)列,默認(rèn)情況下使用頁面加載時(shí)的單選按鈕選擇

拉莫斯之舞 2023-01-06 11:10:13
使用下面的代碼,我試圖從表中的一行訪問特定列“數(shù)量”。發(fā)生的情況是頁面加載時(shí)默認(rèn)選擇其中一行,而用戶選擇時(shí)可以選擇其余行。我創(chuàng)建了一個(gè)點(diǎn)擊事件處理程序來處理手動(dòng)選擇。使用類名訪問列時(shí),它不返回任何內(nèi)容。我需要將此值分配給相同形式的輸入框。我會(huì)附上該行的圖像表標(biāo)記:        <tr valign="top" class="row6">            <td>            {if $tpl_order_details[lineitems].quantity > 1}                {if $radio_flag == "false"}                    <input type="radio" name="line_item" class="radio_class" id="line_item" value="{$tpl_order_details[lineitems].mSku}" checked onclick="handleClick(this);"/>                    {assign var=radio_flag value='true'}                {else}                    <input type="radio" name="line_item" class="radio_class" id="line_item" value="{$tpl_order_details[lineitems].mSku}" onclick="handleClick(this);" />                {/if}               {/if}            </td>               <td>            <a href="http://{$smarty.server.SERVER_NAME}/search/?q={$tpl_order_details[lineitems].sku}" target="_new">{$tpl_order_details[lineitems].sku}</a>            </td>            <td>&nbsp;            </td>            <td>{$tpl_order_details[lineitems].item_description}</td>            <td class="quantity_class" >{$tpl_order_details[lineitems].quantity}</td>            <td>{$tpl_order_details[lineitems].item_status}</td>使用循環(huán)外的輸入字段標(biāo)記:<table><tr><td><label for="new_quantity">Enter New Quantity</label></td><td><input type="number" id="split_quantity" name="split_quantity"  min="1" max="6"></td><td><button type="submit" value="Save" name="submit_action">Submit</button></td><td><button type="submit" value="Cancel" name="submit_action">Cancel</button></td></tr></table>腳本:// This is to handle the radio button selected by default on page load.$( document ).ready(function() {    var firstRadioValue = 0;    firstRadioValue = $("input[name='line_item']:checked").val();    $('input[name="split_quantity"]').attr('max', firstRadioValue);    var quantity = $(".radio_class").parent().find(".quantity_class").val();    alert(quantity);});
查看完整描述

1 回答

?
慕桂英4014372

TA貢獻(xiàn)1871條經(jīng)驗(yàn) 獲得超13個(gè)贊

您在樹上走得還不夠遠(yuǎn),無法找到課程。你有:


var quantity = $(".radio_class").parent().find(".quantity_class").val();

這讓你到父<td>你正在尋找的元素是這個(gè)的兄弟:


<td class="quantity_class" >...

你想要做的是向上移動(dòng)一個(gè)元素(表格行),然后從那里找到你正在尋找的類,所以使用closest(). 請注意,.quantity_class它沒有值,因此您必須在表格單元格中獲取文本:


var quantity = $(".radio_class").closest('tr').find(".quantity_class").text();

此外,我沒有看到任何帶有max屬性的標(biāo)記或任何帶有名稱的標(biāo)記split_quantity。


編輯- 根據(jù)與用戶的對話,發(fā)現(xiàn)需要進(jìn)行一些更改。split_quantity首先,需要識(shí)別持有的表格,以便它可以在更宏大的標(biāo)記中定位:


<table id="split_quantity_id">

    <tr>

        <td><label for="new_quantity">Enter New Quantity</label></td>

        <td><input type="number" id="split_quantity" name="split_quantity" min="1" max="6"></td>

        <td><button type="submit" value="Save" name="submit_action">Submit</button></td>

        <td><button type="submit" value="Cancel" name="submit_action">Cancel</button></td>

    </tr>

</table>

然后我們擺脫了onclick="handleClick(this)內(nèi)聯(lián) JavaScript,轉(zhuǎn)而讓 jQuery 處理點(diǎn)擊事件。最后我們重構(gòu)了函數(shù):


$(function() {

    var firstRadioValue = 0;

    firstRadioValue = $("input[name='line_item']:checked").closest('tr').find('.quantity_class').text();

    $('input[name="split_quantity"]').attr('max', firstRadioValue);

    var quantity = $(".radio_class").closest('tr').find(".quantity_class").text();

    console.log(quantity);


    $('table').delegate('.line_item', 'click', function(){

        currentRadioValue = $(this).closest('tr').find('.quantity_class').text();

        console.log(currentRadioValue);

        $('#split_quantity_id').find('[name="split_quantity"]').attr('max', currentRadioValue);

    });

});

注意:還發(fā)現(xiàn) OP 使用的是 Smarty 2,它是使用舊版本 jQuery 的舊版本 Smarty,因此.delegate()使用 代替on().


查看完整回答
反對 回復(fù) 2023-01-06
  • 1 回答
  • 0 關(guān)注
  • 157 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)