反対のことができること、およびjsの外部で定義されているjsからphp値を変更できないことは知っていますが(少なくとも私の知る限りでは?)、jsの内部で定義されているphp変数はどうですか変数。言うごとに:
function captureID(clicked_id){
var clickedVar = (clicked_id);
var alert_type = document.getElementById(clickedVar).getAttribute('class');
var infoVar = document.getElementById(clickedVar).getAttribute('value');
var usernameVar = "<?php
$fetch_username = mysql_query('SELECT info FROM alerts WHERE id = "clickedVar"');
while ($row = mysql_fetch_array($fetch_username)){
$username = $row['username'];
}
if (alert_type == 'b_alert'){
var type = 'battle';
} else if (alert_type == 'a_alert'){
var type = 'award';
} else if (alert_type == 'f_alert'){
var type = 'friend';
}
alert(type);
if (type == 'battle'){
document.getElementById('battle_username').text(<?php echo $username; ?>)
} else if (type == 'award') {
} else if (type == 'friend'){
}
}
次に、js スクリプト内で変数を使用します。これは可能性ですか?機能していないように見えるからです。明確なエラーはなく、機能していません。