国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁(yè)javascripttext_inputJavascript Form - 如何將焦點(diǎn)設(shè)置為T(mén)extArea...

Javascript Form - 如何將焦點(diǎn)設(shè)置為T(mén)extArea...

我們想知道如何將焦點(diǎn)設(shè)置為T(mén)extArea。...

<!DOCTYPE html>
<html>
<head>
</head>
<body>
  <input type="button" id="btn" value="Add" onclick="newFunc2()">
  <div id="new1"></div>
  <script type='text/javascript'>
function newFunc2(){
    a=document.createElement('div');
    b = document.createElement('input'); 
    a.appendChild(b);
    c=document.createElement('div');
    c.appendChild(a);
    var d=document.getElementById('new1');
    d.appendChild(c);
}

</script>
</body>
</html>