Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body controller="Ctrl">
<span class="inline-text">種類:</span>
  
<select ng-model="searchObject.txt">
  <option value="">-- 請選擇 --</option>
  <option value="進口車">進口車</option>
  <option value="國產車">國產車</option>
</select>
  
  
<div>
  <div>
    <dl>
      <dt>搜尋條件</dt>
        <dd>
          <div ng-repeat="searchItem in searchObject">{{searchItem}}</div> 
        </dd>
    </dl>
  </div>
</div>
  
  
</body>
</html>
 
function Ctrl($scope){
  
  $scope.searchObject = {
       
        txt:null
    };
  
}
Output

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

Dismiss x
public
Bin info
annaismepro
0viewers