2

jQueryダイアログを使用してdivポップアップ(入力するユーザーフォーム)を作成しています。検証には以下のプラグインを使用しています。

http://www.position-absolute.com/articles/jquery-form-validator-because-form-validation-is-a-mess/

私の問題は、フィールドがダイアログの端に近く、エラーツールチップ(「フィールドが必要です」など)がポップアップすると、ダイアログ内でオーバーフローすることです。私が欲しいのは、それをダイアログの上に浮かせることです。

これが写真です。

エラー

4

3 に答える 3

3

Try using an older version of the plugin ex:2.5. In that version the container of the message is appended to the body of the document not the form so the messages are always visible. I don't know why they changed this.

于 2012-10-11T10:58:52.267 に答える
1

overflow:visibleダイアログコンテナ(スクロールバーがあるコンテナ-ブラウザの要素の検査機能を使用して、それがどれであるかを見つける)を指定することから始めることができます。

于 2012-06-30T13:35:55.837 に答える
0

Give a higher z-index to the tooltip.

For example if your dialog box has a z-index: 1000; Give the tooltip z-index:2000;

于 2012-06-30T13:42:27.037 に答える