質問

iOS、Android、およびWindows Phone 7で作業する必要があるモバイルWebプロジェクトでXUI.JSを使用したいのです。ドキュメント(http://xuijs.com/)は、さまざまなバージョンが含まれているものとして少し不明です。。「IE&IEモバイル」バージョンには、「WebKit / Firefox / Opera」バージョンも含まれていますか?

そうでない場合は、図書館を配信する推奨される方法は何ですか?必要に応じて、さまざまなバージョンを含めるように条件付きコメントを使用することを検討していました。例えば

<!--[if IE]>
<script src="xui-ie.js"></script>
<!-- <![endif]-->

<!--[if !IE]>
<script src="xui.js"></script>
<!-- <![endif]-->    
.

役に立ちましたか?

解決

I haven't investigated this much myself yet, but I've found others approaching it conditionally, like you: http://danny-t.co.uk/index.php/2012/03/10/conditionally-loading-xui-js-for-webkit-blackberry-or-ie/

Having quickly looked at the source of the ie- and the webkit/ff/opera-version it appears that the IE-version is somewhat tailored for IE, and will have issues if used on the other engines.

An example is the implementation of on in the IE-version, that uses attachEvent which is IE-only (maybe also Opera), and so wouldn't work on FF, Safari etc.

So in my opinion, it does look like you're on the right path.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top