0

私はこの質問が非常に基本的であることを知っていますが、私はJQueryに不慣れであり、解決策を見つけることができません。

閉じボタン、つまり画像である「x」ボタンがクリックされたときに、モーダルウィンドウからチェックボックスの値を取得したいと思います。

どんな助けでも大歓迎です。ありがとう..

$(document).ready(function()の後に次のコードを追加しました。

$('img#closeImg').on('click', function(){
alert($('.popupContact input[type=checkbox]').val());

以下はhtmlコードです

 <div id="popupScreen">
    <div id="popupContact">  
    <form name="ReportParametersForm" name="ProcessActionForm" action="<portlet:actionURL>
            <portlet:param name='generateReportAction' value='generateReportAction'/>
            </portlet:actionURL>" method="post" onSubmit="return sendUserFeedback(doNotAsk)"> 
        <img src="<%= renderRequest.getContextPath() %>/NavigationClose.gif" id="closeImg" align="right" onclick="disablePopup()">
        <br/> 
        <p id="contactArea">  
            To help us improve our intranet pages, can you please tell us in about 12 words, what you are accessing this area of the intranet for?  
            <br/><br/>

            <table>
            <tr> 
            <td><input type="text" name="userInput" id="userInput" size="60" onfocus="this.value='';" value="I am trying to find..."/></td>
            <td><input type="submit" name="submitFeedback" value="Send feedback"> </td>
            </tr>
            </table>
            <br/><input type="checkbox" name="doNotAsk" class=""> Please do not ask me for this feedback again
            </form>
    </div>
    <div id="thankYou">  
     <img src="<%= renderRequest.getContextPath() %>/NavigationClose.gif" align="right" onclick="disableNow()">
     <form name="closingForm" name="closingForm"> 
            <h5>Thank you for providing feedback to help us improve Exchange</h5>
            <br/>
            <br/>
            <input type="button" name="Close" value="Close" onClick="disableNow()">
            </form>
    </div>
    <div id="backgroundPopup"></div> 
    <div id="mask"></div> 
    </div>
4

1 に答える 1

1
$('img#x').on('click', function(){
    alert($('.modal input[type=checkbox]').first().val());
});
  • IDが。の画像要素にイベントを添付しxます。
  • クリックすると、ハンドラーは、という名前のクラスを持つHTML内のチェックボックスの値を警告しますmodal
于 2012-06-28T01:31:49.763 に答える