Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コンソール内のテキスト フィールドを介してユーザーから取得した JavaScript を実行し、ブラウザのコンソールの出力を JavaScript や jQuery で直接取得するにはどうすればよいですか?
そのためにevalを使用できます:
console.log(eval('('+$('#yourInput').val()+')'))
デモンストレーション