0

たとえば、このチェックボックスのクリックで Webflow イベントをトリガーできます

<td><g:checkBox name="isSelected" value="${contestantInstance.id}" checked="false"     onclick="${remoteFunction(action:'selectCheck',_eventID:Next id:contestantInstance.id,
                    params:'\'isSelected=\' + this.checked')}"  />
4

1 に答える 1

0

今まで誰も答えてくれなかったので、試してみようと思います。

このコードは私にとってはうまくいきます。

タグに入る Javascript コード

<script type="text/javascript">

        function enableText(checkBool, textId)
        {
            textFldObj = document.getElementById(textId);
            //Disable the text field
            textFldObj.disabled = !checkBool;
            //Clear value in the text field
            if (!checkBool) { textFldObj.value = ''; }
        }

    </script>

checkBox と onclick イベントは

    <td><g:checkBox checked="false" name="allVideos" value="${videoInstance.id}" onclick="enableText(this.checked, '${videoInstance.id}');" /></td>

注意 videoInstance は、ループ内の var の名前です。

于 2013-04-25T13:59:52.280 に答える