我有一个浏览器检查:
$(document).ready(function() {
if ($.browser.chrome) {
//show document write input only if chrome = true else, ignore it
}
});
</script>
HTML
<input name="name" type="text" size="30" maxlength="50" **IF CHROME == TRUE? document.write("style="position:relative; margin-top:-3px; margin-left:-1px;"");** >
显然以上是不正确的..有人可以解释这样做的正确方法吗?谢谢!