2つの異なる召喚ボタン(rowとnot_row)に共通のダイアログが必要です。各ボタンは、異なるdata()変数を設定します。設定されている変数に基づいて、ダイアログの反応は異なります。
以下はほぼ動作します。問題は、行が最初にクリックされた後、not_row、$(this).data('row')が設定されたままになるため、ifステートメントがそれに応じて機能しないことです。1つのオプションは、data('type'、'row')やdata('type'、'not_row')などの別のデータ変数をクリック関数に追加することですが、それは無駄のようです。
助言がありますか?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Dialogs</title>
<link type="text/css" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/smoothness/jquery-ui.css" rel="stylesheet" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" language="javascript"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js" language="javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#not_row").click(function(){$("#dialog").data('id',$(this)).dialog("open");});
$("#row").click(function(){$("#dialog").data('row',$(this)).dialog("open");});
$("#dialog").dialog({
autoOpen : false,
resizable : false,
height : 330,
width : 430,
modal : true,
buttons: [
{
text : 'CLICK',
click : function() {
$(this).dialog("close");
if($(this).data('row')) {alert('row');}
else {alert('not row');}
}
}
]
});
});
</script>
</head>
<body>
<input type="button" value="row" id="row" data-bla="whatever" />
<input type="button" value="not_row" id="not_row" data-bla="whatever" />
<div id="dialog"></div>
</body>
</html>