onclick 功能如何工作,如何将 php 信息发送到 javascript,如何将 javascript 信息发送到 php 以及如何使用 ajax杰斯?
How does an onclick funktion work, how do I get php informations to javascript, how do I get javascript informations to php and how do I use ajax js?
我尝试使用 onclick 函数。如果用户单击 html 按钮,则应执行一个 js 函数。对于此函数,我需要 php 代码的一些变量。我如何得到它们?
如果我得到它们,我必须改变它们。那么我如何将它们(更改后的变量)设置为 php?
我认为 ajax 也许可以帮助我。但是如何使用 ajax?
与使用 Javascript 的 fetch
函数相比,使用像 Axios or jQuery 这样的库可能会有所帮助。以下是使用 jQuery:
可能实现的方法
HTML
<button onClick="handleClick()">Click me<button>
Javascript
function handleClick() {
console.log('Clicked the button')
$.get('path/to/script.php', function (data) {
// It helps if the data returned in the PHP script is JSON formatted
console.log(data)
});
}
我尝试使用 onclick 函数。如果用户单击 html 按钮,则应执行一个 js 函数。对于此函数,我需要 php 代码的一些变量。我如何得到它们? 如果我得到它们,我必须改变它们。那么我如何将它们(更改后的变量)设置为 php? 我认为 ajax 也许可以帮助我。但是如何使用 ajax?
与使用 Javascript 的 fetch
函数相比,使用像 Axios or jQuery 这样的库可能会有所帮助。以下是使用 jQuery:
HTML
<button onClick="handleClick()">Click me<button>
Javascript
function handleClick() {
console.log('Clicked the button')
$.get('path/to/script.php', function (data) {
// It helps if the data returned in the PHP script is JSON formatted
console.log(data)
});
}