在form中写个
<input type="hidden" name="flash">
然后在表单提交上写个button,其上有个Onclick="sendflash();"
<input type="button" onclick="sendflash();">
再在JS中定义这个函数
function sendflash(){
var fl=document.getElementById("myflash");
document.forms[0].flash=fl.innerText;
document.forms[0].submit();
<input type="hidden" name="flash">
然后在表单提交上写个button,其上有个Onclick="sendflash();"
<input type="button" onclick="sendflash();">
再在JS中定义这个函数
function sendflash(){
var fl=document.getElementById("myflash");
document.forms[0].flash=fl.innerText;
document.forms[0].submit();