可能重复:
Selecting text on focus using jQuery not working in iPhone iPad Browsers
jQuery.select()方法选择输入字段中的所有文本,用户可以轻松复制/粘贴。
$('#linkModal input').live("click", function(){
$(this).select();
});
容易。
但是,这会破坏移动设备,特别是iPhone上的移动Safari。可能是因为它是一个只读字段,但无论哪种方式,我都希望用户选择它以便复制/粘贴。
形式:
<input type="text disabled" readonly="true" value="user needs to copy/past" />