画像の HTML ソースを含むデータベースがあります。jQuery と Json の使用。画像を表示したい。これが私が書いたスニペットです。
$(document).ready(function() {
$("#domainID").click(function() {
var domain_id = $(this).val();
$("#picture").html('');
$.getJSON('/index.php/admin/show_picture/' + domain_id, function(data) {
img = "<img src=\"https://url/" + data.htmlImageFull + "\" />";
var items = [];
$.each(data, function(key, val) {
$("#picture").append(data[key].htmlImageFull);
});
});
});
});
主なことは、関連付けられた画像の ID を使用して html ソースを取得することです。ここで何か変更が必要ですか? また、MySQL を使用して、イメージに関連付けられた ID を確認しています。
HTMLは次のとおりです。
<form method="post" action="/index.php/add">
<p>
<select name="id" id="id" size="15">
<option>Select a Domain</option>
<? foreach ($unmatchedDomains as $row) {
?>
<option value="<?=$row->id?>"><?=$row->domain
?></option>
<? }?>
</select>
</td>
<select name="id" id="id">
<option style="alignment-adjust: ←">Select Something</option>
<? foreach ($some as $row) {
?>
<option value="<?=$row->id?>"><?=$row->name
?></option>
<? }?>
</select>
<input type="submit" value="Something" />
<div id="email_content"></div>
<div id="picture"></div>
</p>
<td> </td>
<td> </td>
</tr>
</table>
</form>
提供されたコードでテストすると、画像/画像が表示されません。