「type」という名前のキー配列があります。配列の名前は、「th」タグのクラス名です。'th'タグのクラス名を使用してこの配列値を取得したいと思います。これを行う可能性はありますか......
<script>
var type= [{sym :"1" ,desc: "one"}, {sym:"2" ,desc:"two"},{sym: "3" ,desc:"three"}];
</script>
<html>
<body>
<table>
<th class="type">
</table>
</body>
</html>