Jquery has a great language construct that looks like this:
$(document).ready(function() {
$("a").click(function() {
alert("Hello world!");
});
});
As you might guess this, once the document has loaded, binds a custom function to the onClick event of all a tags.
The question is, how can I achieve this same kind of behavior in Prototype?
Jquery has a great language construct that looks like this:
$(document).ready(function() {
$("a").click(function() {
alert("Hello world!");
});
});
As you might guess this, once the document has loaded, binds a custom function to the onClick event of all a tags.
The question is, how can I achieve this same kind of behavior in Prototype?
Share Improve this question edited Dec 28, 2011 at 11:45 Rob W 349k87 gold badges807 silver badges682 bronze badges asked Sep 8, 2008 at 12:46 Mark BiekMark Biek 151k54 gold badges159 silver badges201 bronze badges 03 Answers
Reset to default 8Prototype 1.6 provides the dom:loaded
event on document:
document.observe("dom:loaded", function() {
$$('a').each(function(elem) {
elem.observe("click", function() { alert("Hello World"); });
});
});
I also use the each
iterator on the array returned by $$()
.
$(document).observe('dom:loaded', function() {
$$('a').invoke('observe', 'click', function() {
alert('Hello world!');
});
});
Event.observe(window, 'load', function() {
Event.observe(element, 'click', function() {
alert("Hello World!");
});
});
Of course you need to "select" the elements first in Prototype.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743636730a4482277.html
评论列表(0条)