1153万例文収録!

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


小窓モード

プレミアム

ログイン
設定

設定

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

セーフサーチ:オン

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

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

セーフサーチについて

"html input"を含む例文一覧と使い方

該当件数 : 23



例文

Using HTML input form. 例文帳に追加

HTML 入力フォームの使用。 - NetBeans

HTML input form attributes 例文帳に追加

HTML の入力フォームの属性 - NetBeans

An HTML input tag is added between the form tags.例文帳に追加

「了解」をクリックします。 form タグの間に HTML input タグが追加されます。 - NetBeans

Introduction This package provides an advanced system for managing uploads of files via HTML input type="file" / fields.例文帳に追加

概要 この関数は、HTML input type="file" /フィールド経由でのファイルのアップロードを管理する高度なシステムを提供します。 - PEAR

例文

Expand the code with an HTML input form for entering values. 例文帳に追加

値を入力するための HTML 入力フォームをコードに追加します。 - NetBeans


例文

Find more information about HTML input forms. 例文帳に追加

HTML 入力フォームについては、HTML 入力フォームを参照してください。 - NetBeans

First time the debugger processes the code to display the HTML input form. 例文帳に追加

1 回目は、HTML 入力フォームを表示するコードが処理されます。 - NetBeans

Updating the HTML Input Form - Unifying the Implementation of Creation and Editing 例文帳に追加

HTML 入力フォームの更新 - 作成および編集の実装の統合 - NetBeans

These parameters are received from the HTML input form through the POST method. 例文帳に追加

これらのパラメータは、HTML 入力フォームから POST メソッドを介して受け取ります。 - NetBeans

例文

Freezes the elements: elements' values will be displayed without HTML input tags.Parameter 例文帳に追加

要素を凍結します。 要素の値が表示される際に、HTML の input タグは出力されません。 - PEAR

例文

To transfer the ID of a wish through the HTML input form, store it in a variable. 例文帳に追加

HTML 入力フォームを使用してウィッシュの ID を転送するには、その ID を変数に格納します。 - NetBeans

Refactoring will not affect the HTML input form or the code for displaying the related error messages. 例文帳に追加

リファクタリングは、HTML 入力フォームまたはエラーメッセージ関連の表示用のコードには影響がありません。 - NetBeans

Entering the user's name and password in an HTML input form and submitting the data for validation to the index.php page. 例文帳に追加

ユーザーの名前とパスワードを HTML 入力フォームに入力し、検査のためのデータを index.php ページに送る - NetBeans

Enter the following PHP code block inside the HTML input form below the code for the password input:Password: input type=password name=password/br/例文帳に追加

次の PHP コードブロックを、HTML 入力フォーム内の、パスワード入力のコードの下に入力します。 Password: input type=password name=password/br/ - NetBeans

Enter the following PHP code blocks inside the HTML input form below the code for password confirmation:Please confirm your password: input type=password name=password2/br/ 例文帳に追加

次の PHP コードブロックを、HTML 入力フォーム内の、パスワード確認入力のコードの下に入力します。 Please confirm your password: input type=password name=password2/br/ - NetBeans

Enter the following PHP code block inside the HTML input form, below the wisher's name input:Welcome!brform action=createNewWisher.php method=POST Your name: input type=text name=user/br/ 例文帳に追加

次の PHP コードブロックを、HTML 入力フォーム内の、ウィッシャーの名前入力の下に入力します。 Welcome!brform action=createNewWisher.php method=POST Your name: input type=text name=user/br/ - NetBeans

A Session is a persistent storage for transferring information from one page to another without using an HTML input form.例文帳に追加

セッションは、HTML 入力フォームを使用せずに、あるページから別のページへ情報を転送する持続的記憶領域です。 - NetBeans

Updating the HTML Input Form - Unifying the Implementation of Creation and Editing Currently the input form works for creation of a new wish when the wish has no id. 例文帳に追加

HTML 入力フォームの更新 - 作成および編集の実装の統合 現在入力フォームは、ウィッシュに ID がない場合、新しいウィッシュの作成に使用できます。 - NetBeans

It creates an HTML input text element that at every keypressed javascript event, returns a list of options in a dynamic dropdown select box (especially useful to emulate a select box with a huge number of options). 例文帳に追加

この要素内で JavaScript の keypressed イベントが発生するたびに動的なドロップダウンセレクトボックスを返します(選択肢が非常に多いセレクトボックスを実現する際などに特に有用です)。 - PEAR

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 element looks like a normal HTML input text element that at every keypressed javascript event, searches the array of options for a match and autocompletes the text in case of match. 例文帳に追加

この要素は通常の HTML テキスト入力要素と似ていますが、キーが押されるたびに javascript のイベントが起動し、もし入力内容とオプションの配列が一致すればその内容を自動的に補完します。 - 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

例文

In an XML conversion system and method, a client is provided with an XML generating means for generating XML input data described in XML from HTML input data described in HTML, and for verifying the adequacy of the XML input data.例文帳に追加

クライアントに、HTMLにより記述されたHTML入力データから、XMLにより記述されたXML入力データを生成し、且つ、該XML入力データの妥当性を検証するXML生成手段を設けたことを特徴とするXML変換システムおよび方法を提供する。 - 特許庁




  
Copyright © Japan Patent office. All Rights Reserved.
  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。
  
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/ ).
  
© 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.
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

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

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

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

ログイン

Weblio会員(無料)になると

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

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

無料会員に登録する

©2026 GRAS Group, Inc.RSS