это мой скрипт действия
action.js
function showDistrict() { //alert("hello");
$.ajax({
url: 'dialog_applet.jsp#dialog-modal-district',
success: function(msg) {
document.getElementById("dialog-content-district").innerHTML = msg;
}
});
$(function() {
$("#dialog:ui-dialog").dialog("destroy");
$("#dialog-content-district").dialog({
height: 300,
width: 350,
modal: true
});
});
// alert("hello1");
}
function showCity() { //alert("hello");
$.ajax({
url: 'dialog_applet.jsp#dialog-modal-city',
success: function(msg) {
document.getElementById("dialog-content-city").innerHTML = msg;
}
});
$(function() {
$("#dialog:ui-dialog").dialog("destroy");
$("#dialog-content-city").dialog({
height: 300,
width: 350,
modal: true
});
});
// alert("hello1");
}
это мой скрипт содержания, который находится внутри dialog_applet.jsp
<div id="dialog-modal-district">
dialog-modal-district is here
</div>
<div id="dialog-modal-city">
dialog-modal-city is here
/applet>
при вызове любой функции showDistrict () или showCity () .он показывает содержимое обоих <div>
.Но я хочу получить определенное содержимое <div>
, которое было вызвано.Я имею в виду при вызове showDistrict , он только покажет, что dialog-modal-district здесь , но он показывает, что dialog-modal-district здесь dialog-modal-город здесь
Любая помощь приветствуется!Заранее спасибо.!!