我有个问题。我将变量c_prot发送到页面parsing.php。它有效,但我需要同时将c_prot发送到 page chart.php但它不起作用。如果你解决了类似的问题或者你知道怎么做,如果你能帮助我,我将非常感激。
非常感谢!:)
这是我的代码:
<script type="text/javascript">
$(document).ready(function()
{
$('#generuj').submit(function()
{
$.post('parsing.php',
{
c_prot : $('select#protokoly option:selected').val()
},
function(data)
{
if(data == 'no')
{
$('#refresh').html('Chyba')
}
else
{
$('#refresh').html(data); // START
$('chart_plot').click(function()
{
document.location.reload();
});
//END
}
});
$.post('chart.php',
{
c_prot : $('select#protokoly option:selected').val()
});
return false;
});
});