重複の可能性:
ie9 のプレースホルダー
http://jsfiddle.net/zhshqzyc/mGAPs/の非常に単純なテスト
私のコード:
<div id="generatePinsDialog" >
<label for="newCount" style="width: 400px;">
How many?</label>
<input id="newCount" type="text" size="25" placeholder="Enter the number!" />
<br />
と:
jQuery(function() {
jQuery.support.placeholder = false;
test = document.ElementById("newCount");
if('placeholder' in test) jQuery.support.placeholder = true;
});
Google chrome では動作しますが、IE 9 では動作します。
コードを修正していただきありがとうございます。