国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁javascriptinputjQuery Form - 如何處理提交按鈕的點(diǎn)擊事件...

jQuery Form - 如何處理提交按鈕的點(diǎn)擊事件...

我們想知道如何處理提交按鈕的點(diǎn)擊事件。...

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<style type='text/css'>
#addDest, #input2 {
  display: none;
}
</style>
<script type='text/javascript'>
$(window).load(function(){
    $('#a2').click(function() {
        $('#addDest').show();
    });
    $('#addDest').click(function() {
        if ($("#input2").is(':visible')) {
            console.log("test");
        };
        $('#input2').show();
    });
});
</script>
</head>
<body>
  <button id="a2">A2</button>
  <button id="addDest">Add</button>
  <input type="text" id='input2'>
</body>
</html>