angular.module("app.categories").controller("CategoryController", t), t.$inject = ["$scope", "$stateParams", "$state", "categoryManager"]
angular.module("app", ["ionic", ["app.home","app.products",...]);
angular.module("app").run(["$templateCache", function(t) {
t.put("app/scripts/about/about.html", '<ion- view>.....'),t.put("app/scripts/home/block.html", '<div>....')}]); //this is how the page content is loaded
私はIonic(ルートディレクトリの 'Ionic serve')を使用してこのアプリをブラウザで実行しています。私はコンテンツがこのように読み込まれたページで基本的なJavaScriptを実行することができません。タイムアウト後DOMContentLoadedが呼び出された場合、要素がピックアップされるだけで要素のidを操作する次の実行ではなく、HTMLや値Ionic AndroidアプリのDOMコンテンツを操作できません
setTimeout(function(){
document.addEventListener('DOMContentLoaded',function(){
document.getElementById('customBox').id = 'changed'; //to test, id changes
document.getElementById('customBox').innerHtml = '<h1> test </h1>'; //does not change anything, no errors in console
document.getElementById('customBox').text= '<h1> test </h1>'; //does not change anything, no errors in console
document.getElementById('customBox').html= '<h1> test </h1>'; //does not change anything, no errors in console
});
},2000);
は中ページのコンテンツに変更を防止だものはありますブラウザ?このIonic Androidアプリで簡単なJavaScriptを使用してDOMコンテンツを変更するにはどうすればよいですか?
ため、このリンクは、IDの変更については、$タイムアウトを試みるようangular.elementを使用してみてください、それだけに関連する少なくとも何かをテストすることでした要素の変更、idの変更を削除しても同じことが起こります。残りの部分は何も変更されません –