因为我无法在我的服务器代码中添加placeholder
atinput
标记,所以我需要在 DOM 准备好时使用 jQuery 动态添加此属性。所以我写了下面的代码,我测试了它在Chrome、Firefox和IE7、IE8中运行良好,但在IE9中运行不佳。
$(function () {
$('input').prop('placeholder', 'value');
}
是否有其他 jQuery 方法可以做到这一点?
更新:
是的,我知道placeholder
IE9不支持,并且jquery-placeholder
我的页面中使用了该插件,但是这个插件需要检查标签的placeholder
attr input
,所以我需要使用jQuery
添加这个attr,让这个插件工作。