我想通过AJAX传递数据。变量由数字和非字母数字变量("001.0/210.00"
)组成。我的$_POST['task']
没有返回值。我试图将数据更改为JSON,但这似乎不起作用。
$(document).ready(function(e){
var trigger = $('.task a'),
var container = $('#content1');
trigger.on('click', function(e){
var shotElement = event.currentTarget.children[0].innerText;
$.ajax({
type : 'POST',
url : 'indexPipeline.php',
data : { task: shotElement },
success : function(response) {
$("#displayPipeline").load("indexPipeline.php");
}
});
return false;
});
});