これは、私が結合しようとしている HTML です。
<div class="post linkDetail">
<div class="postThumbnail">
<a href="/redirect?url=http%3A//blogs.msdn.com/archive/2012/04/23/how-to-improve-performance-in-your-metro-style-app.aspx">
<img src="<validURL Here>" width="280">
</a>
</div>
<p class="full-url">
http://blogs.msdn.com/b/windowsappdev/archive/2012/04/03/how-to-improve-performa...
</p>
<p></p>
<p>Nobody likes slow or unresponsive apps. Users expect that apps respond immediately to touch, taps, clicks, gestures and key-presses. Users expect that animations are smooth, that they can play, pause and restart their music and videos quickly, and that they never have to wait for the app to catch up with them. This is the first in a series of posts on how to make your apps "fast and fluid."
</p>
<p>We invested a lot of time in the engineering teams thinking about how we can ensure the performance of Metro style apps. We have learned what we can do in the platform to deliver on fast and fluid performance and have also learned what works and what does not work in building apps that deliver great experiences. In this blog I share with you some of the hard lessons from our own experiences so that you can build the best possible experiences for your customers.</p><p>Performance is more than just a stopwatch and efficient algorithms. When I think of performance, I like to take a holistic ...
</p>
</div>
<p>
要素の後にすべてのコンテンツを取得し、すべての要素を単一のテキスト文字列にp.full-url
結合したいと考えています。<p>
そのため、次のようになります。
<p></p>
<p>Nobody likes slow or unresponsive apps. Users expect that apps respond immediately to touch, taps, clicks, gestures and key-presses. Users expect that animations are smooth, that they can play, pause and restart their music and videos quickly, and that they never have to wait for the app to catch up with them. This is the first in a series of posts on how to make your apps "fast and fluid."
</p>
<p>We invested a lot of time in the engineering teams thinking about how we can ensure the performance of Metro style apps. We have learned what we can do in the platform to deliver on fast and fluid performance and have also learned what works and what does not work in building apps that deliver great experiences. In this blog I share with you some of the hard lessons from our own experiences so that you can build the best possible experiences for your customers.</p><p>Performance is more than just a stopwatch and efficient algorithms. When I think of performance, I like to take a holistic ...
</p>
なります:
遅いアプリや反応の悪いアプリが好きな人はいません。ユーザーは、アプリがタッチ、タップ、クリック、ジェスチャ、およびキーの押下に即座に応答することを期待しています。ユーザーは、アニメーションがスムーズであること、音楽やビデオをすばやく再生、一時停止、再開できること、アプリが追いつくのを待つ必要がないことを期待しています。これは、アプリを「高速で滑らか」にする方法に関する一連の投稿の第 1 回です。エンジニアリング チームは、Metro スタイル アプリのパフォーマンスを確保する方法を検討することに多くの時間を費やしました。私たちは、高速で滑らかなパフォーマンスを提供するためにプラットフォームで何ができるかを学び、優れたエクスペリエンスを提供するアプリを構築する上で何が機能し、何が機能しないかを学びました. このブログでは、お客様が可能な限り最高のエクスペリエンスを構築できるように、私たち自身の経験からのいくつかの難しい教訓を共有します。パフォーマンスは単なるストップウォッチや効率的なアルゴリズムではありません。パフォーマンスについて考えるとき、私は総合的に考えるのが好きです...
これは単純な HTML DOM で可能ですか?