奇怪的问题,在 chrome 和 mozilla 上对此进行了测试,它在 safari $('input') 中以某种方式工作,返回为空。?? 我在这里做错了吗?我的代码如下
Javascript:
function prepare_publisher_profile_input_fields(){
var inputs = document.getElementsByTagName("INPUT");
for (var i = 0; i < inputs.length; i++) {
if (inputs[i].type === 'submit') {
inputs[i].disabled = true;
}
}
var element = this;
$('input').click(function () {
$(this).removeAttr('readonly');
$('input').removeAttr('disabled');
$("#publisher_profile_save").removeAttr('disabled');
$("#publisher_profile_save").bind('click', function () {
publisher_profile_save();
});
$("#publisher_profile_cancel").removeAttr('disabled');
$("#publisher_profile_cancel").bind('click', function () {
publisher_profile_cancel();
});
});
}
HTML:
<input type="text" name="company_name" value="" class="input-xlarge form-required" readonly="readonly" id="company_name">
<input type="text" name="username" value="" class="input-xlarge form-required" readonly="readonly" id="username">
<a href="#" id="publisher_profile_save" class="btn btn-primary pull-left" disabled="disabled">Save</a>
<a href="#" id="publisher_profile_cancel" class="btn btn-primary pull-right" disabled="disabled">Cancel</a>
请帮忙。