- ベストアンサー
文字の連結
HTMLでもじの連結をしたいのですが どのようにしたらいいでしょうか? 例) A=abc B=def C=abcdef フォームにて"abcdef"で飛ばしたいのですが…。 この”C”をHTML内で作成するにはどのようにしたらいいですか?
- みんなの回答 (2)
- 専門家の回答
質問者が選んだベストアンサー
<html> <head> <script language="JavaScript"> <!-- function test(){ document.hoge.C.value=document.hoge.A.value + document.hoge.B.value; document.hoge.action="hoge.html"; document.hoge.submit(); } //--> </script> </head> <body> <Form name="hoge"> <input type="text" name="A" value="abc"> <input type="text" name="B" value="def"> <input type="text" name="C"> <input type="button" onclick="test();" value="test"> </Form> </body> </html> document.hoge.action="hoge.html"; のhoge.htmlを遷移先に変えてください。 Cを見せたくなければ <input type="hidden" name="C"> に変更してください
その他の回答 (1)
- LancerVII
- ベストアンサー率51% (1060/2054)
こんにちは。 ブラウザ上で動的に処理を行いたい場合は JavaScript等に頼る必要があります。
補足
ありがとうございます。 何か?サンプル的なものはありますか?