Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
/* example 1 */
var button = $('#button1'), interval;
new AjaxUpload(button,{
//action: 'upload-test.php', // Ist aus Sicherheitsgründen vom Autor in diesem Beispiel deaktiviert
action: 'upload.htm',
name: 'myfile',
onSubmit : function(file, ext){
// change button text, when user selects file
button.text('Uploading');
// If you want to allow uploading only 1 file at time,
// you can disable upload button
this.disable();
// Uploding -> Uploading. -> Uploading...
interval = window.setInterval(function(){
var text = button.text();
if (text.length < 13){
button.text(text + '.');
} else {
button.text('Uploading');
}
}, 200);
},
onComplete: function(file, response){
button.text('Upload');
window.clearInterval(interval);
// enable upload button
this.enable();
// add file to the list
$('<li></li>').appendTo('#example1 .files').text(file);
}
});
<div id="button1" class="button">Upload</div>
/**
* Creates and returns element from html chunk
*/
var toElement = function(){
var div = d.createElement('div');
return function(html){
div.innerHTML = html;
var el = div.childNodes[0];
div.removeChild(el);
return el;
}
}();
Mit dem jQuery-Beispiel bist du hier gestern Morgen aufgeschlagen. Und heute Abend fällt dir ein, dass du dieses Framework überhaupt nicht nutzen willst :suspekt:Das Beispiel greift auf das jquary framework zurück das will ich aber nicht haben