Jump to content
  • 0

ui dialog


lolka84
 Share

Question

Всем привет.


$(function(){

// Dialog
$('#dialog').dialog({
autoOpen: false,
width: 600,
});

// Dialog Link
$('#dialog_link').click(function(){
$('#dialog').dialog('open');
return false;
});

//hover states on the static widgets
$('#dialog_link, ul#icons li').hover(
function() { $(this).addClass('ui-state-hover'); },
function() { $(this).removeClass('ui-state-hover'); }
);

});


<p><a href="#" id="dialog_link">Open Dialog</a></p>
<div id="dialog" class="myDialog">

<p>Тут уже основной контент будет</p><script>alert("test");</script>

</div>

Почему alert срабатывает 2 раза?? :blink::dash:

Вживую - http://mytavatuy.ru/dialog/main.html

Edited by lolka84
Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

если нужно чтоб срабатывало при открытии диалога http://jsfiddle.net/WHJNt/

если нужно чтоб срабатывало при загрузке страницы, а не при открытие диалога http://jsfiddle.net/WHJNt/1/

  • Like 1
Link to comment
Share on other sites

  • 0

Спасибо :)

UPD.

Другая фишка вылезла :dash:


<div id="dialog" class="myDialog">

<p>Тут уже основной контент будет</p>
<input type="checkbox" name="name" value="0">
<script>
$("input").click(function(e) {

if (confirm("Подтверждаете удаление?")) {

return false;

}

else {

$(this).removeAttr("checked","checked");

}

});
</script>
</div>

Объясните дураку, почему confirm то 2 раза срабатывает???! :dash: :dash: :dash:

Вынести в <head> желательно не предлагать, хотелось бы, что б работало именно в теле окна.

Вживую опять же по ссылке http://mytavatuy.ru/dialog/main.html

Edited by lolka84
Link to comment
Share on other sites

  • 0

http://jsfiddle.net/WHJNt/2/

Не стоит злоупотреблять распихиванием скриптов в каждый функциональный блок )) Это следует делать только когда это действительно нужно. В остальных случаях лучше собрать все скрипты по тематике и прилинковать одним файлом к странице )

Если в окне диалога ui должна быть форма которую тебе нужно отправить на сервер с помощью ajax то обычно делают вот так http://jsfiddle.net/WHJNt/5/ стандартные кнопки диалога и твой обработчик при нажатии.

И почитай документацию http://jqueryui.com/demos/dialog/#modal-form

Edited by wwt
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy