1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
function submit_1(champ , arg) {
arg = arg.replace(/=/,'_EGL_');
arg = newarg.replace(/</,'_INF_');
arg = newarg.replace(/>/,'_SUP_');
window.location.href = '?' + champ + '=' + arg;
}
<?
$arg = urldecode(str_replace('%u2265','≥',$_SERVER['QUERY_STRING']));
?>
<form name="obj_norm">
<select name="obj_norm" onChange="submit_1('obj_norm' , escape(this.options[this.selectedIndex].innerHTML))">
<option>obj_norm</option>
<option>allie aux pm ≥ 80%</option>
<option>potion</option>
</select>
</form> |
Partager