1016万例文収録!

「html submit」に関連した英語例文の一覧と使い方 - Weblio英語例文検索


小窓モード

プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > html submitに関連した英語例文

セーフサーチ:オン

不適切な検索結果を除外する

不適切な検索結果を除外しない

セーフサーチについて

html submitの部分一致の例文一覧と使い方

該当件数 : 14



例文

HTML class for a submit type element 例文帳に追加

submit 型の要素のための HTML クラス - PEAR

Below the h1 (or h2) tags, add the following:html:form action=/loginhtml:submit value=Login //html:form 例文帳に追加

h1 (または h2) タグの下に、次を追加します。 html:form action=/loginhtml:submit value=Login //html:form - NetBeans

In the editWishList.php file, enter the following HTML form below the PHP block:!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//ENhtmlheadmeta http-equiv=Content-Type content=text/html; charset=UTF-8/headbodyform name="addNewWish" action="editWish.php">input type="submit" value="Add Wish"/>/form>/body/html 例文帳に追加

editWishList.php ファイルで、次の HTML フォームを PHP ブロックの下に追加します。 !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//ENhtmlheadmeta http-equiv=Content-Type content=text/html; charset=UTF-8/headbodyform name=addNewWish action=editWish.phpinput type=submit value=Add Wish//form/body/html - NetBeans

In the Palette (Window Palette) in the right region of the IDE, drag a Tableitem from the HTML category to a point just above the html:submit value=Login/ line. 例文帳に追加

IDE の右側にあるパレット (「ウィンドウ」「パレット」) で、「表」項目を「HTML」カテゴリから html:submit value=Login / 行の直前の位置にドラッグします。 - NetBeans

例文

Move the html:submit value=Login / element into the second column of the third table row, so that the third table row appears as follows (changes in bold):trtd/tdtdhtml:submit value=Login //td/tr例文帳に追加

表の 3 行目の 2 列目に html:submit value=Login / 要素を移動し、表の 3 行目が次のボールドで示す部分になるようにします。 trtd/tdtdhtml:submit value=Login //td/tr - NetBeans


例文

This package is not documented yet.Class Trees for HTML_QuickForm_Action_Submit 例文帳に追加

このパッケージに関する文書は、未作成です。 - PEAR

HTML Form in index.php Enter the following code block into the body of index.php:form action=wishlist.php method=GET name=wishList Show wish list of: input type=text name=user/input type=submit value=Go //form 例文帳に追加

index.php での HTML フォーム index.php の本文に次のコードブロックを入力します。 form action=wishlist.php method=GET name=wishList Show wish list of: input type=text name=user/input type=submit value=Go //form - NetBeans

htmlheadmeta http-equiv=content-type content=text/html; charset=UTF-8/headbody Welcome!br form action=createNewWisher.php method=POST Your name: input type=text name=user/br/ Password: input type=password name=password/br/ Please confirm your password: input type=password name=password2/br/ input type=submit value=Register/ /form /body/html 例文帳に追加

htmlheadmeta http-equiv=content-type content=text/html; charset=UTF-8/headbody Welcome!br form action=createNewWisher.php method=POST Your name: input type=text name=user/br/ Password: input type=password name=password/br/ Please confirm your password: input type=password name=password2/br/ input type=submit value=Register/ /form /body/html 注: password 型は、文字がアスタリスクに置き換えられる、特殊なテキストフィールドの型です。 - NetBeans

HTML Form for Logon on index.phpIn the index.php file, enter the following code before the closing /body tag:form name="logon" action="index.php" method="POST" >Username: input type="text" name="user"/>Password input type="password" name="userpassword"/>input type="submit" value="Edit My Wish List"/>/form> 例文帳に追加

index.php 上のログオン用の HTML フォーム index.php ファイルで、次のコードを終了 /body タグの前に入力します。 - NetBeans

例文

The code presents an HTML form that enables entering the name and password of the user in the text fields. 例文帳に追加

form name=logon action=index.php method=POST Username: input type=text name=user/Password input type=password name=userpassword/input type=submit value=Edit My Wish List//formコードは、テキストフィールドにユーザーの名前とパスワードを入力できる HTML フォームを示します。 - NetBeans

例文

To implement this functionality, enter the following HTML input form in the editWishList.php file, before the closing /body tag:form name=backToMainPage action=index.phpinput type=submit value=Back To Main Page//formThe form redirects the user to the front index.php page upon pressing the Back to Main Page button. 例文帳に追加

この機能を実装するには、次の HTML 入力フォームを editWishList.php ファイルの終了 /body タグの前に入力します。 form name=backToMainPage action=index.phpinput type=submit value=Back To Main Page//form「Back to Main Page」ボタンを押すと、フォームは、ユーザーを最初の index.php ページにリダイレクトします。 - NetBeans

The above example code creates a HTML form that only contains a single textfield with the name "name" and with the label "What's your name" and a submit button labeled "Go, Go". 例文帳に追加

上のサンプルコードは、"name"という名前を持つ1つのテキストフィールドと、"What's your name" というラベル、そして "Go, Go" とラベルされた submit ボタンを含むHTML フォームを生成します。 - PEAR

To implement the Delete button, enter the following code block inside the while loop in editWishList.php, directly below the code block for the editWish button:tdform name=deleteWish action=deleteWish.php method=POSTinput type=hidden name=wishID value=?php echo wishID; ?/input type=submit name=deleteWish value=Delete//form/tdThe HTML input form contains a hidden field for the wishID and a submit button labelled Delete. 例文帳に追加

「Delete」ボタンを実装するには、次のコードを editWishList.php の while ループの内部、editWish ボタンのコードブロックのすぐ下に入力します。 tdform name=deleteWish action=deleteWish.php method=POSTinput type=hidden name=wishID value=?php echo wishID; ?/input type=submit name=deleteWish value=Delete//form/tdHTML 入力フォームには、wishID 用の非表示フィールドと、「Delete」というラベルが付いた送信ボタンが含まれています。 - NetBeans

例文

When the user depresses a submit button provided to a page generated in the HTML 2, the service information is transmitted to the composite machine 10 (S155), and the composite machine 10 stores the service information.例文帳に追加

そして、ユーザにより、HTML2により生成されるページに設けられたsubmitボタンを押下するとサービス情報が複合機10に送信され(S155)、サービス情報が複合機10に記憶される。 - 特許庁

索引トップ用語の索引



  
Copyright © Japan Patent office. All Rights Reserved.
  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。
  
© 2010, Oracle Corporation and/or its affiliates.
Oracle and Java are registered trademarks of Oracle and/or its affiliates.Other names may be trademarks of their respective owners.
  
Copyright © 2001 - 2008 by the PEAR Documentation Group.
This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/ ).
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する
英→日 日→英
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する

©2024 GRAS Group, Inc.RSS