執行PHP代碼,我想通過單擊鏈接通過單擊鏈接
HTML上執行一些PHP代碼:
<a style='text-align: right;cursor:pointer;' href="#" name="reset" class='system list-group-item'>
<span style="float: left;" class="glyphicon glyphicon-remove"></span>Client reset
</a>
PHP:
if(isset($_GET['reset'])){
$link=$_GET['reset'];
if ($link == '1') {
do something
}
}
編輯
我嘗試了很多方法,最好的方法是啓動ajax調用的onClick事件。 像這樣:
HTML:
<a style='text-align: right;cursor:pointer;' onclick="reset();" name="reset" class='system list-group-item'>
<span style="float: left;" class="glyphicon glyphicon-remove"></span>Client zurücksetzten</a>
JS:
function reset() {
$.ajax({
type: "POST",
url: 'index.php',
data:{method : 'resetClient'},
success:function(html) {
swal({ title: "Success!", text: "Client has been reset.", type: "success", confirmButtonText: "Ok", confirmButtonColor: "#c9132a" });
}
}); }
你有問題嗎? –
只需將你的href屬性鏈接到像'href =「?reset = true」' – Dale
這樣的代碼不起作用,我想知道如何做到這一點 – Valcone