首页 > Chrome App无法选中除表单外的内容

Chrome App无法选中除表单外的内容

正在写一个开源的HTTP模拟工具,遇到无法选中除inputtextarea外的所有内容,可能是因为默认的CSS样式问题,求助!

如图:


解决方法:需要向css样式中添加如下样式

body {
    -webkit-touch-callout: all;
    -webkit-user-select: all;
    -khtml-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
    user-select: all;
}

其中样式可选值:


报一个bug:
复现步骤:
1. 请求方式 post
2. 类型 form-data
3. 其余所有内容不填,直接点击send
实际:
send按钮变为loading... 且无法恢复(只有save之后才能恢复)
预期:
请求的url为空时进行校验,并给出适当提示.

【热门文章】
【热门文章】