我收到 ReferenceError:something_anything_nothing 未定义错误...请帮助。
<script>
function show(str)
{
var r=str;
alert(r);
}
</script>
<?php
$l='something_nothing_anything';
echo "<select onChange='show($l)'>";
echo "<option></option>";
echo "</select>";
?>