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

App下載
首頁javascriptinputjQuery Form - 如何附加表單控件...

jQuery Form - 如何附加表單控件...

我們想知道如何附加表單控件。...

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.7.1.js'></script>
<style type='text/css'>
input {
  display: block;
  visibility: hidden;
  width: 0;
  height: 0;
}
</style>
<script type='text/javascript'>
$(window).load(function(){
    $('button').click(function(){
        $('input').click();
    });
});
</script>
</head>
<body>
  <input type="file" name="somename" size="chars">
  <button>Choose File</button>
</body>
</html>