我想要两个不同的号召性用语按钮(行和 not_row)共有的对话框。每个按钮都会设置一个不同的 data() 变量。根据设置的变量,对话框会做出不同的反应。
以下几乎可以工作。问题是如果第一次单击行,则 not_row, $(this).data('row') 保持设置,因此 if 语句不会相应地执行。一种选择是在我的点击函数中添加另一个数据变量,例如 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>