ホームページ > ウェブフロントエンド > htmlチュートリアル > Jquery を使用して編集可能なダイアログ ボックスをポップアップする方法_html/css_WEB-ITnose

Jquery を使用して編集可能なダイアログ ボックスをポップアップする方法_html/css_WEB-ITnose

WBOY
リリース: 2016-06-24 11:57:17
オリジナル
1101 人が閲覧しました

JQuery を使用して編集可能なダイアログ ボックスをポップアップする方法
http://www.weiboxiu.cn/plugin/lhgdialog4/demo/demo.html これを見てください。 JQ に基づいています
http://www.veryhuo.com/a/view/40564.html
これは単なるポップアップ ダイアログ ボックスです


ディスカッションに返信 (解決策)

<!doctype html><html lang="en"><head>	<meta charset="utf-8">	<title>jQuery UI Dialog - Modal confirmation</title>	<link rel="stylesheet" href="css/base/jquery.ui.all.css">	<script src="js/jquery-1.10.2.js"></script>	<script src="js/jquery.ui.core.js"></script>	<script src="js/jquery.ui.widget.js"></script>	<script src="js/jquery.ui.button.js"></script>	<script src="js/jquery.ui.position.js"></script>	<script src="js/jquery.ui.dialog.js"></script>	<style>	body {	font-size: 62.5%;	font-family: "Trebuchet MS", "Arial", "Helvetica", "Verdana", "sans-serif";}   .resize{resize:none;}	</style>	<script>	$(function() {		$( "#dialog-confirm" ).dialog({			resizable: false,			height:140,			modal: true,			buttons: {				Save: function() {				    $("#view_content").html($("#edit_content").val());					$( this ).dialog( "close" );				},				Cancel: function() {					$( this ).dialog( "close" );				}			}        });	});	</script></head><body><div id="dialog-confirm" title="Edit Dialog">	<textarea  id="edit_content" class="resize"></textarea></div><div id="view_content"></div></body></html>
ログイン後にコピー

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート