我有問題只執行其中一個按鈕時單擊腳本之一。當按鈕被點擊時,代碼一起執行2個腳本。我怎樣才能一次執行一個腳本,並且特定的按鈕執行特定的腳本。謝謝您的幫助。以下是我的代碼。執行特定的代碼時,特定的按鈕單擊一個它
<html>
<head>
<script language="javascript" type="text/javascript">
function popup(){
window.location = 'testing.php?run=shell';
}
function popdown(){
window.location = 'testing.php?run=shell';
}
</script>
</head>
<body>
<input type="button" onclick="popup()" value="popup">
<?php
if(isset($_GET['run']) && ($_GET['run'] == 'shell')){
echo shell_exec('sh bash_test.sh');
}
?>
<input type="button" onclick="popdown()" value="popdown">
<?php
if(isset($_GET['run']) && ($_GET['run'] == 'shell')){
echo shell_exec('sh bash_run.sh');
}
?>
</body>
</html>
難道他們這樣做? – Oriol
沒有。做不同 – user1502809