當前位置:首頁 » 網頁前端 » web中簡易聊天對話框的製作
擴展閱讀
webinf下怎麼引入js 2023-08-31 21:54:13
堡壘機怎麼打開web 2023-08-31 21:54:11

web中簡易聊天對話框的製作

發布時間: 2023-06-09 07:12:52

A. web中簡易聊天對話框的製作

jquery就可以了

<inputtype="text"value=""name="a"/>
<inputtype="text"value=""name="b"/>
<inputtype="button"value="發送"onclick="ab();"/>
<script>
functionab()
{
vara=$("input[name='a']").val();

$("input[name='b']").val(a);
}
</script>

B. 利用JavaWeb設計簡易聊天室,具體要求看補充

利用JavaWeb設計簡易聊天室
這樣你什麼柑橘
比較

C. 怎麼利用java web編寫一個輸入框和一個按鈕,點擊按鈕彈出一個對話框,顯示你剛才在輸入框輸入的內容

<scripttype="text/javascript">
納基functionsend(){
vartxt=document.getElementById("input");
洞灶謹alert(txt.value);
}
</script>
<body>
辯斗<inputtype="text"id="input"></input>
<buttonid="send"onclick="send();">提交</button>
</body>