admin管理员组文章数量:1343311
So, I'm trying to call a php function from the same file where the javascript lies.
I'm trying to call the php function every 10 sec to add new items to the "li"
<script type="text/javascript" src=".10.2/jquery.min.js">
function addElement () {
var newLi = document.createElement("li");
var text = document.createTextNode("Teststring in <li>");
newLi.appendChild(text);
var ulnew = document.getElementsByClassName('new-item');
ulnew[0].appendChild(newLi)
}
window.onload = function(){setInterval(function(){
$.ajax( // I just copy pasted this part to
{
url: 'test.php',
type: 'GET',
success: function(output)
{
//alert(output);
document.write("It worked!");
}
}
);// here I really have no idea what is suppose to happen here
},10000);}
</script>
<?php
function echoTest(){
echo 'item';
}
?>
Again, What I'm trying to do is Execute a php function every 10 sec. How am I going to do this? Please Help!
So, I'm trying to call a php function from the same file where the javascript lies.
I'm trying to call the php function every 10 sec to add new items to the "li"
<script type="text/javascript" src="http://ajax.googleapis./ajax/libs/jquery/1.10.2/jquery.min.js">
function addElement () {
var newLi = document.createElement("li");
var text = document.createTextNode("Teststring in <li>");
newLi.appendChild(text);
var ulnew = document.getElementsByClassName('new-item');
ulnew[0].appendChild(newLi)
}
window.onload = function(){setInterval(function(){
$.ajax( // I just copy pasted this part to
{
url: 'test.php',
type: 'GET',
success: function(output)
{
//alert(output);
document.write("It worked!");
}
}
);// here I really have no idea what is suppose to happen here
},10000);}
</script>
<?php
function echoTest(){
echo 'item';
}
?>
Again, What I'm trying to do is Execute a php function every 10 sec. How am I going to do this? Please Help!
Share Improve this question asked Feb 10, 2014 at 8:22 user3291956user3291956 2- You may not call php function from the same file since the response will contains all page content (html/js) besides the function result. You have to place code of this function in a separate file. – hindmost Commented Feb 10, 2014 at 8:32
- Send a parameter on your ajax and use its existence to echo a new li, just at the very top of the code. Inside the true block, make sure you use echo and die(); to prevent the script to return all the page code. – Fabiano Araujo Commented Sep 14, 2015 at 22:03
5 Answers
Reset to default 2 Try This
<script type="text/javascript" src="http://ajax.googleapis./ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
window.onload = function(){setInterval(function(){
$.ajax( // I just copy pasted this part to
{
url: 'http://localhost/test.php',
type: 'GET',
success: function(output)
{
var current = $("ul#updating-list").html();
$("ul#updating-list").html(current + "<li>" + output + "</li>");
}
}
); // here I really have no idea what is suppose to happen here
},10000);}
</script>
and you need to call the function in php
<?php
function echoTest(){
echo 'item';
}
echotest();
?>
Well, you can do it this way as well, there surely are many ways to approach updating elements, but this is a way I find easy.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Untitled Document</title>
<script src="http://ajax.googleapis./ajax/libs/jquery/1.10.2/jquery.min.js"></script>
</head>
<body>
<ul id="updating-list"></ul>
<script>
window.onload = function(){
setInterval(function(){
$.ajax({
url: "test.php",
type: "GET",
success: function(output){
var current = $("ul#updating-list").html();
$("ul#updating-list").html(current + "<li>" + output + "</li>");
}
});
}, 10000);
}
</script>
</body>
</html>
The PHP file should look something like this.
<?php
if (!isset($_POST['call'])) {
return;
}
$call = $_POST['call'];
function result(){
if ($call == "time") {
echo(date('h:i:s'));
}else{
echo("Something fancy!");
}
}
result();
?>
And like hindmost mented, you cannot call PHP functions from the same file as Ajax is in. You must have it in another file and call it from there instead.
*/radio button using jquery and ajax and get values from xml*/
<html>
<head><h1><b><i><center>RADIO BUTTONS </center></i></b></h1></head>
<body bgcolor="palegoldenrod">
<form>
<script src="jquery-1.11.1.js">
</script>
<script>
$(document).ready(function(){
$("#age").blur(function() {
var test = $(this).val();
if(test=="")
{
$("#dropdown").hide();
}
else
{
$("#dropdown").show();
}
});
$.ajax({
type: "GET",
url: "count.xml",
dataType: "xml",
success: function (xml) {
$(xml).find('countrylist').each(function () {
var name = $(this).find('cname1').text();
var option1 = $("<radio>" + name + "</radio>");
var select=$("#div1");
select.append(option1);
var name = $(this).find('cname2').text();
var option2 = $("<radio>" + name + "</radio>");
var select=$("#div2");
select.append(option2);
var name = $(this).find('cname3').text();
var option3 = $("<radio>" + name + "</radio>");
var select=$("#div3");
select.append(option3);
});
}
});
});
function myCountry(country)
{
alert("HI" +country);
$.ajax({
type: "GET",
url: "stat.xml",
dataType: "xml",
success: function (xml) {
var select = $('#div4');
$(xml).find('state').each(function ()
{
var cval=$(this).find('country').text();
if(country==cval){
var name = $(this).find('sname').text();
select.append($("<label>" + name + "</label>"));
}
});
var select = $('#div5');
$(xml).find('state').each(function ()
{
var cval=$(this).find('country').text();
if(country==cval){
var name = $(this).find('sname1').text();
select.append($("<label>" + name + "</label>"));
}
});
var select = $('#div6');
$(xml).find('state').each(function ()
{
var cval=$(this).find('country').text();
if(country==cval){
var name = $(this).find('sname2').text();
select.append($("<label>" + name + "</label>"));
}
});
var select = $('#div7');
$(xml).find('state').each(function ()
{
var cval=$(this).find('country').text();
if(country==cval){
var name = $(this).find('sname3').text();
select.append($("<label>" + name + "</label>"));
}
});
var select = $('#div8');
$(xml).find('state').each(function ()
{
var cval=$(this).find('country').text();
if(country==cval){
var name = $(this).find('sname4').text();
select.append($("<label>" + name + "</label>"));
}
});
var select = $('#div9');
$(xml).find('state').each(function ()
{
var cval=$(this).find('country').text();
if(country==cval){
var name = $(this).find('sname5').text();
select.append($("<label>" + name + "</label>"));
}
});
}
});
}
function myFun(city)
{
alert("hiiiii" +city);
$.ajax({
type: "GET",
url: "city.xml",
dataType: "xml",
success: function (xml) {
$(xml).find('city').each(function ()
{
var sval=$(this).find('state').text();
if(city==sval)
{
var select = $('#div10');
var name = $(this).find('cname').text();
select.append($("<label>" + name + "</label>"));
}
var sval=$(this).find('state').text();
if(city==sval)
{
var select = $('#div11');
var name = $(this).find('cname1').text();
select.append($("<label>" + name + "</label>"));
}
var sval=$(this).find('state').text();
if(city==sval)
{
var select = $('#div12');
var name = $(this).find('cname2').text();
select.append($("<label>" + name + "</label>"));
}
var sval=$(this).find('state').text();
if(city==sval)
{
var select = $('#div13');
var name = $(this).find('cname3').text();
select.append($("<label>" + name + "</label>"));
}
var sval=$(this).find('state').text();
if(city==sval)
{
var select = $('#div14');
var name = $(this).find('cname4').text();
select.append($("<label>" + name + "</label>"));
}
var sval=$(this).find('state').text();
if(city==sval)
{
var select = $('#div15');
var name = $(this).find('cname5').text();
select.append($("<label>" + name + "</label>"));
}
});
}
});
}
</script>
<br>
<br>
<br>
<label style="width:100px;float:left;">First Name</label> <input type="text" id="name"><br><br>
<label style="width:100px;float:left;">Middle Name</label> <input type="text"><br><br>
<label style="width:100px;float:left;">Last Name</label> <input type="text"><br><br>
<label style="width:100px;float:left;">Address Line1</label> <textarea rows="3" cols="16"></textarea><br><br>
<label style="width:100px;float:left;">Address Line2</label> <textarea rows="3" cols="16"></textarea><br><br>
<label style="width:100px;float:left;">Age</label> <input type="number" id="age" value="a"><br><br>
<div id="dropdown" style="display:none">
<label style="width:100px;float:left;">Country</label> <br>
<div id="div1">
<input type="radio" name="country" id="ind" value="India" onclick="myCountry(this.value)">
<label style="width:100px;float:left;"></label> </div><br>
<div id="div2">
<input type="radio" name="country" id="usa" value="US" onclick="myCountry(this.value)">
<label style="width:100px;float:left;"></label> </div><br>
<div id="div3">
<input type="radio" name="country" id="cnd" value="Australia" onclick="myCountry(this.value)">
<label style="width:100px;float:left;"></label></div>
<br>
<br>
<br>
<label style="width:100px;float:left;">State</label> <br>
<br>
<div id="div4">
<input type="radio" name="rad" id="radio2" value="Tamil Nadu" onchange="myFun(this.value)"><label style="width:100px;float:left;"></label>
</div>
<div id="div5">
<input type="radio" name="rad" id="radio2" value="Andhra Pradesh" onchange="myFun(this.value)"><label style="width:100px;float:left;"></label>
</div>
<div id="div6">
<input type="radio" name="rad" id="radio2" value="Florida" onchange="myFun(this.value)"><label style="width:100px;float:left;"></label>
</div>
<div id="div7">
<input type="radio" name="rad" id="radio2" value="NewJersey" onchange="myFun(this.value)"><label style="width:100px;float:left;"></label>
</div>
<div id="div8">
<input type="radio" name="rad" id="radio2" value="Queensland" onchange="myFun(this.value)"><label style="width:100px;float:left;"></label>
</div>
<div id="div9">
<input type="radio" name="rad" id="radio2" value="Maryland" onchange="myFun(this.value)"><label style="width:100px;float:left;"></label>
</div>
<br>
<br>
<br>
<label style="width:100px;float:left;">City:</label> <br>
<div id="div10">
<input type="radio" name="ra" id="c1" >
</div>
<div id="div11">
<input type="radio" name="ra" id="c1" >
</div>
<div id="div12">
<input type="radio" name="ra" id="c1" >
</div>
<div id="div13">
<input type="radio" name="ra" id="c1" >
</div>
<div id="div14">
<input type="radio" name="ra" id="c1" >
</div>
<div id="div15">
<input type="radio" name="ra" id="c1" >
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<button value="" id="but">OK</button>
</b>
</form>
</body>
</html>
*?checkbox using ajax jquery and get *? the value from xml
<html>
<head><h1><b><center><i>CHECKBOX</i></center></b></h1></head>
<body bgcolor="lavender">
<form>
<script src="jquery-1.11.1.js">
</script>
<script>
$(document).ready(function(){
$("#age").blur(function() {
var test = $(this).val();
if(test=="")
{
$("#dropdown").hide();
}
else
{
$("#dropdown").show();
}
});
$.ajax({
type: "GET",
url: "count.xml",
dataType: "xml",
success: function (xml) {
$(xml).find('countrylist').each(function () {
var name = $(this).find('cname1').text();
var option1 = $("<checkbox>" + name + "</checkbox>");
var select=$("#div1");
select.append(option1);
var name = $(this).find('cname2').text();
var option2 = $("<checkbox>" + name + "</checkbox>");
var select=$("#div2");
select.append(option2);
var name = $(this).find('cname3').text();
var option3 = $("<checkbox>" + name + "</checkbox>");
var select=$("#div3");
select.append(option3);
});
}
});
});
function myCountry(country)
{
alert("HI" +country);
$.ajax({
type: "GET",
url: "stat.xml",
dataType: "xml",
success: function (xml) {
var select = $('#div4');
$(xml).find('state').each(function ()
{
var cval=$(this).find('country').text();
if(country==cval){
var name = $(this).find('sname').text();
select.append($("<label>" + name + "</label>"));
}
});
var select = $('#div5');
$(xml).find('state').each(function ()
{
var cval=$(this).find('country').text();
if(country==cval){
var name = $(this).find('sname1').text();
select.append($("<label>" + name + "</label>"));
}
});
var select = $('#div6');
$(xml).find('state').each(function ()
{
var cval=$(this).find('country').text();
if(country==cval){
var name = $(this).find('sname2').text();
select.append($("<label>" + name + "</label>"));
}
});
var select = $('#div7');
$(xml).find('state').each(function ()
{
var cval=$(this).find('country').text();
if(country==cval){
var name = $(this).find('sname3').text();
select.append($("<label>" + name + "</label>"));
}
});
var select = $('#div8');
$(xml).find('state').each(function ()
{
var cval=$(this).find('country').text();
if(country==cval){
var name = $(this).find('sname4').text();
select.append($("<label>" + name + "</label>"));
}
});
var select = $('#div9');
$(xml).find('state').each(function ()
{
var cval=$(this).find('country').text();
if(country==cval){
var name = $(this).find('sname5').text();
select.append($("<label>" + name + "</label>"));
}
});
}
});
}
function myFun(city)
{
alert("hii" +city);
$.ajax({
type: "GET",
url: "city.xml",
dataType: "xml",
success: function (xml) {
$(xml).find('city').each(function ()
{
var sval=$(this).find('state').text();
if(city==sval)
{
var select = $('#div10');
var name = $(this).find('cname').text();
select.append($("<label>" + name + "</label>"));
}
var sval=$(this).find('state').text();
if(city==sval)
{
var select = $('#div11');
var name = $(this).find('cname1').text();
select.append($("<label>" + name + "</label>"));
}
var sval=$(this).find('state').text();
if(city==sval)
{
var select = $('#div12');
var name = $(this).find('cname2').text();
select.append($("<label>" + name + "</label>"));
}
var sval=$(this).find('state').text();
if(city==sval)
{
var select = $('#div13');
var name = $(this).find('cname3').text();
select.append($("<label>" + name + "</label>"));
}
var sval=$(this).find('state').text();
if(city==sval)
{
var select = $('#div14');
var name = $(this).find('cname4').text();
select.append($("<label>" + name + "</label>"));
}
var sval=$(this).find('state').text();
if(city==sval)
{
var select = $('#div15');
var name = $(this).find('cname5').text();
select.append($("<label>" + name + "</label>"));
}
});
}
});
}
</script>
<br>
<br>
<br>
<label style="width:100px;float:left;">First Name</label> <input type="text" id="name"><br><br>
<label style="width:100px;float:left;">Middle Name</label> <input type="text"><br><br>
<label style="width:100px;float:left;">Last Name</label> <input type="text"><br><br>
<label style="width:100px;float:left;">Address Line1</label> <textarea rows="3" cols="16"></textarea><br><br>
<label style="width:100px;float:left;">Address Line2</label> <textarea rows="3" cols="16"></textarea><br><br>
<label style="width:100px;float:left;">Age</label> <input type="number" id="age" value="a"><br><br>
<div id="dropdown" style="display:none">
<label style="width:100px;float:left;">Country</label> <br>
<div id="div1">
<input type="checkbox" name="country" id="ind" value="India" onclick="myCountry(this.value)">
<label style="width:100px;float:left;"></label> </div><br>
<div id="div2">
<input type="checkbox" name="country" id="usa" value="US" onclick="myCountry(this.value)">
<label style="width:100px;float:left;"></label> </div><br>
<div id="div3">
<input type="checkbox" name="country" id="cnd" value="Australia" onclick="myCountry(this.value)">
<label style="width:100px;float:left;"></label></div>
<br>
<br>
<br>
<label style="width:100px;float:left;">State</label> <br>
<br>
<div id="div4">
<input type="checkbox" id="radio2" value="Tamil Nadu" onchange="myFun(this.value)"><label style="width:100px;float:left;"></label>
</div>
<div id="div5">
<input type="checkbox" id="radio2" value="Andhra Pradesh" onchange="myFun(this.value)"><label style="width:100px;float:left;"></label>
</div>
<div id="div6">
<input type="checkbox" id="radio2" value="Florida" onchange="myFun(this.value)"><label style="width:100px;float:left;"></label>
</div>
<div id="div7">
<input type="checkbox" id="radio2" value="NewJersey" onchange="myFun(this.value)"><label style="width:100px;float:left;"></label>
</div>
<div id="div8">
<input type="checkbox" id="radio2" value="Queensland" onchange="myFun(this.value)"><label style="width:100px;float:left;"></label>
</div>
<div id="div9">
<input type="checkbox" id="radio2" value="Maryland" onchange="myFun(this.value)"><label style="width:100px;float:left;"></label>
</div>
<br>
<br>
<br>
<label style="width:100px;float:left;">City:</label> <br>
<div id="div10">
<input type="checkbox" id="c1" >
</div>
<div id="div11">
<input type="checkbox" id="c1" >
</div>
<div id="div12">
<input type="checkbox" id="c1" >
</div>
<div id="div13">
<input type="checkbox" id="c1" >
</div>
<div id="div14">
<input type="checkbox" id="c1" >
</div>
<div id="div15">
<input type="checkbox" id="c1" >
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<button value="" id="but">OK</button>
</b>
</form>
</body>
</html>
You can call ajax on same php file with something like this
$('.botondb').click(function() {
var val = $(this).val();
$.ajax({
url: '<?php echo basename($_SERVER['PHP_SELF']); ;?>',
type: "GET",
data: {
date:1234,
ajax:1
},
success: function(response) {
alert("exito!!! "+ response);
},
error: function(xhr) {
alert("error");
}
});
});
And this in the top of your php file:
if (isset($_GET['ajax'])){
//do your stuff
echo $ajaxvalue=$_GET['ajax'];
exit;
}
本文标签: Calling PHP Function from javascript in the same file using ajaxStack Overflow
版权声明:本文标题:Calling PHP Function from javascript in the same file using ajax - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743725673a2528326.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论