Ben bu basit bir cevabı vardır eminim, ama ben şu anda boş bir çizim var, herhangi bir öneriniz işaretçiler olurdu.
I have a php page [ lets say counter.php] which when called [loaded/viewed] it connects to a db and increments a counter. I also have another page that has a selects box, I want to add a .js function on the onchange event that will call/poll the counter.php file thus incrementing the counter.
. Js gelen ve dosya / sayfa aramak veya yoklamak için bir yolu var mı, ben bu bir HttpRequest üzerinden yapılabilir ama bir şey geri dönmek veya sayfada herhangi bir şey değiştirmek istemiyorum gibi bu overkill gibi görünüyor biliyorum.
şimdiden teşekkürler
. K
Cevaplar için teşekkürler, ama belki, belli değildi ben bir şey dönmek ya da sayfada herhangi bir şey değiştirmek istemiyorum, ben sadece sayfayı yoklamak istiyorum. I / iframe ajax başvurmadan olmadan bunu yapmak için basit bir yol arıyorum.
Burada ne bir örnek:
counter.php
<?php
// connect to db
// increment counter val
// DOES NOT RETURN ANYTHING
?>
index.html
<script>
increment()
{
// I Just need to poll the page [counter.php] here,
// thus incrementing the counter, ie no change on this page !
};
</script>
<select onchange="increment();"> ... </select>