onclick如何接收js传过来的变量?
html:
JS:
<script><br />
$(function(){<br />
var glob_oplist = new Array();<br />
$("#select2").each(function(){<br />
$(this).children("option").each(function(){<br />
<br />
glob_oplist.push($(this).val());<br />
});<br />
<br />
});<br />
dtitles=JSON.stringify(glob_oplist);<br />
});<br />
</script>
我想把JS最后得到dtitles的值作为参数赋给action以GET方式传递给DO.php页面,请问这个JS的值如何在ONCLICK事件里写?