我使用php构建了一个摄像头的表格。所以在进入时,我有一个查询,它提取了我需要的所有数据(这是Joomla,因此是奇怪的函数):
$query_camera_name = "SELECT camera_name, camera_status, camera_quality, email_notice, camera_hash, camera_type, camera_sensitivity, camera_user, camera_pass, camera_ip, camera_port FROM #__cameras WHERE user_id=".$user->id." AND camera_status!='DELETED'";
$db->setQuery($query_camera_name);
//get number of cameras so we can build the table accordingly
$db->query();
$num_rows = $db->getNumRows();
// We can use array names with loadAssocList.
$result_cameras = $db->loadAssocList();然后,我通过创建一个包含我需要的数据(这是缩写)的表格:
for($i=0;$i
{
?>
...
">...
');">API Key
...
}
?>我想创建一个jquery UI对话框,其中包含一个textarea和一个URL。对话框很简单:
$(document).ready(function() {
var $dialog = $('
$dialog.append('Please copy this key for camera setup: ')
.append('
'+ENTER URL HERE+'
').append('
For more information see: setup
');$dialog.dialog({
autoOpen: false,
title: 'API Key'
});
$('#axis-details').click(function(e) {
e.preventDefault();
$dialog.dialog('open');
});});
网址是这样的:
"http://myhost.com/notify.php/" +'<?php echo $result_cameras[$i]["camera_hash"]; ?>';问题是如何将该网址放入jquery代码(它显示“ENTER URL HERE”)?我显然不能使用:
<?php echo $result_cameras[$i]["camera_hash"]; ?>因为这只在PHP代码中解决,我循环构建一个html表。任何建议表示赞赏。