我希望在提交表单时运行此功能..
$submit = new Zend_Form_Element_Button('submit');
$submit->setAttrib('onclick', '---what should go here?---');
客户端脚本:
$(document).ready(function() {
$('a[name=modal]').click(function(e) {
e.preventDefault();
var id = $(this).attr('href');
var maskHeight = $(document).height();
var maskWidth = $(window).width();
$('#mask').css({
'width':maskWidth,
'height':maskHeight
});
$('#mask').fadeIn(1000);
$('#mask').fadeTo("slow",0.8);
var winH = $(window).height();
var winW = $(window).width();
$(id).css('top', winH/2-$(id).height()/2);
$(id).css('left', winW/2-$(id).width()/2);
$(id).fadeIn(2000);
});
$('.window .close').click(function (e) {
e.preventDefault();
$('#mask').hide();
$('.window').hide();
});
$('#mask').click(function () {
$(this).hide();
$('.window').hide();
});
});
答案 0 :(得分:2)
使用jQuery时不想使用onclick
例如,请考虑从http://api.jquery.com/submit/
中提取的HTML<form id="target" action="destination.html">
<input type="text" value="Hello there" />
<input type="submit" value="Go" />
</form>
<div id="other">
Trigger the handler
</div>
事件处理程序可以绑定到表单:
$('#target').submit(function() {
alert('Handler for .submit() called.');
return false;
});
表单可以通过Zend_Form本身生成,但这仅用于演示。