我有一个这样的 jquery 帖子
<script type = "text/javascript" >
$(document).ready(function() {
$('#find').click(function() {
var amount = $('#amount').val();
$.ajax({
type: "POST",
contentType: "application/x-www-form-urlencoded;charset=utf-8",
url: "questions.php",
data: {
'amount': amount
},
success: function(data) {
$('#results').show();
$('#results').html(data);
}
});
});
});
</script>
并且成功的数据有一个这样的php数组
Array ( [0] => mpla mpla [1] => mplum mplum ....
如何在屏幕上显示项目之前使用 jquery 或 javascript 获取项目。
我只想要链接的文本
mpla mpla -->that is a link
mplum mplum -->that is a link too