我有一个由JQuery使用的Ajax工作,并且正在通过JSON响应更改页面上列出的内容。
它与文本完美配合,但是,现在我计划使用相同的代码,但显示视频,例如显示mpg。但是,它只是显示来自youtube的嵌入代码的文本。
获取JSON响应的Html页面:
$(document).ready(function()
{
$("#submitbutton").click(function()
{
$.ajax(
{
url: "https://example.com/jsonServer.php",
type: "GET",
dataType: "jsonp",
jsonp: "callback",
data: { carselection: $("#carselection").val()},
success: function(data)
{
if(data.name == "error")
{
$("#outputcarname").text("There is no such car available"),
$("#price").text(" "),
$("#mpg").text(" ");
}
else
{
$("#outputcarname").text(data.name),
$("#price").text(data.price),
$("#mpg").text(data.mpg);
}
},
error: function()
{
$("#outputcarname").text("There is a problem with the server"),
$("#price").text(" "),
$("#mpg").text(" ");
}
});
return false;
});
});
</script>
JSON服务器:
*请注意,我已直接从youtube替换了其中一个mpg的嵌入代码,再次,此嵌入代码与mpg区域完全相同。
<?php
$cars = array('Maxima' => array('price' => '$32,780', 'mpg' => '24'),
'Prius' => array('price' => '$25,565', 'mpg' => '49'),
'Element' => array('price' => '$22,075', 'mpg' => '<iframe width="560" height="315" src="http://www.youtube.com/embed/enXTiYWQl-0" frameborder="0" allowfullscreen></iframe>'));
if(array_key_exists($_GET['carselection'], $cars))
{
$carname = $_GET['carselection'];
$results = array('name' => $carname, 'price' => $cars[$carname]['price'], 'mpg' => $cars[$carname]['mpg']);
}
else
{
$results = array('name' => 'error');
}
$callback = htmlentities($_GET['callback'], ENT_QUOTES);
print $callback . '(' . json_encode($results) . ')';
?>
我的希望是浏览器会接受标签并显然显示视频,但我猜Jquery.text会将其保留为真正的文本。也许还有另一个我不知道应该使用的功能?
答案 0 :(得分:2)
改变这个:
$("#mpg").text(data.mpg);
为:
$("#mpg").html(data.mpg);
.text()
将字符串视为文本。
.html()
将字符串视为html