我有一个包含一些细节的对象,在 HTML 中我有三个超链接:第一个、第二个和两者。我想要它,这样当我单击超链接时,我可以匹配对象的文本并将其附加到 div 上。
<head>
<style>
.text { border:solid 1px #F00; height:30px;}
</style>
<script type="text/javascript" src="jquery-1.7.2.js"></script>
<script type="text/javascript">
var myDate= {
'first':'hi i am first object',
'second':'hi i am second object'
}
$(function (){
$('.text').text()
})
</script>
</head>
<body>
<div class="text"></div>
<a href="#">first</a> <a href="#">second</a>
<a href="#">both</a>
</body>