Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <!-- emmet: input.data-name -->
  <input type="text" class="data-name">
  
  <!-- emmet: button.click-me{Go} -->
  <button class="click-me">Go</button>
  
</body>
</html>
 
// 設定
$(".click-me").click(function clikcing() {
  
  // 讀取 .data-name 的輸入值
  var my_name = $(".data-name").val();
  // 新增一個 <p> ,並且設定文字成 "Hi, " + my_name
  var my_p = $("<p></p>").text("Hi, " + my_name);
  // 把剛剛的 <p> 放進 body
  $("body").append(my_p);
  
});
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers