我意识到这已被多次询问,但我无法弄明白。我确信它很简单,但我一直在敲我的脑袋。我的搜索结果是php数组,显示在jquery窗口中。我需要最终将它们返回到服务器,但首先需要将它们传递给jquery变量。这就是我被困住的地方。
您将看到我尝试通过$ book_title尝试将其传递给jquery变量“title”
<script>
$(function() {
$( "#dialog" ).dialog({
height: 550, width: 450});
$( ".btn" ).click(function(){
//assign values to each variable
//var title = $("#returnvalues").val();
var title = <?php echo json_encode($book_title);?>;
var author = $("#returnvalues").val();
var published = $("#returnvalues").val();
var description = $("#returnvalues").val();
var pages = $("#returnvalues").val();
var publisher = $("#returnvalues").val();
var ISBN = $("#returnvalues").val();
//book_title = $item['volumeInfo']['title'];
$.ajax({
type: "POST",
url: 'book-meta.php',
dataType: 'json',
//assign values to the variables to be passed to the server via data
data: { title : title, author : author, published : published,
description : description, pages : pages, publisher : publisher, ISBN : ISBN},
success: function(data)
{
//alert(data);
//identify the variables for unique handing on the server side
$("input[name='bbp_topic_title']").val(data.title);
$("input[name='bbp_extra_field1']").val(data.author);
$("input[name='bbp_extra_field2']").val(data.published);
$("input[name='bbp_extra_field3']").val(data.description);
$("input[name='bbp_extra_field4']").val(data.pages);
$("input[name='bbp_extra_field5']").val(data.publisher);
$("input[name='bbp_extra_field6']").val(data.ISBN);
//$("#displayResults").html(data);
},
error: function(errorThrown){
alert('error');
}
});
$( "#dialog" ).dialog( "close" );
});
});
</script>
<strong><p style="font-size: 16px; text-align: center";>Top 10 Results for "<?php echo @$_POST['q']; ?>"</p></strong>
<strong><p style="font-size: 14px; text-align: center";>choose a book to select as your topic</p></strong>
<table style="width:400px">
<col width="325">
<col width="75">
<?php $i=0; foreach ($data['items'] as $item) { $i++; ?>
<tr>
<td>
<strong><u><div style="font-size: 14px";><?php printf($item['volumeInfo']['title'])?></u></div></strong>
<strong>Author: </strong><?php printf( $item['volumeInfo']['authors'][0])?><br />
<strong>Published: </strong><?php printf( $item['volumeInfo']['publishedDate']); ?><br />
<strong>Page(s): </strong><?php printf( $item['volumeInfo']['pageCount']); ?><br />
<strong>Publisher: </strong><?php printf( $item['volumeInfo']['publisher']); ?><br />
<strong>Category: </strong><?php printf( strtolower($item['volumeInfo']['printType']).', '.strtolower($item['volumeInfo']['categories'][0])); ?>
<strong>ISBN: </strong><?php printf( $item['volumeInfo']['industryIdentifiers'][0]['identifier']); ?></td>
<td><p><input type="submit" method="post" name="selectbook" value="Select" class="btn" id="returnvalues" /></p>
<img src="<?php printf( rawurldecode($item['volumeInfo']['imageLinks']['smallThumbnail'])); ?>" />
</td>
<tr><td style="width:420px"><p><strong>Description: </strong><?php printf( $item['volumeInfo']['description']); ?><br /></p></td>
<?php $book_title=$item['volumeInfo']['title'];
//$book_meta=array($item['volumeInfo']['title']=>"$book_title",$item['volumeInfo']['authors'][0]=>"$book_author");
//print(json_encode($book_meta));
感谢任何帮助。如果这被标记为重复的问题,请同时给这个新手一些具体的方向。感谢。
答案 0 :(得分:1)
我想出来了!感谢XQDev和Uttara的帮助!我必须在显示我的php结果的循环中创建一个单独的脚本。在这个单独的脚本中,我只声明了我的javascript变量。
<script>
var title = <?php echo json_encode($book_title); ?>;
</script>
问题已解决!希望这个主题可以帮助将来有类似问题的人。
答案 1 :(得分:0)
var title = "<?php echo $book_title; ?>"
可能会导致您想要的结果。
分配后使用alert(title)
可以检查结果。
顺便说一句,你的变量不是&#34; jQuery Variables&#34;它们是普通的Javascript变量。但是你通过使用jQuery方法传递和访问它们。
但是:你的方式,如果$ book_title包含一个字符串,也应该没问题。究竟什么不起作用?
答案 2 :(得分:0)
如果您尝试将php数组分配给javascript变量,请执行此操作
var title = <?php echo json_encode($book_title); ?>;
考虑到你的$ book_title是一个数组
Eg: <?php
$book_title = array('one', 'two');
?>
javascript: title = ['one', 'two']