如何在 Skype 中将姓氏设置为空?

如何在 Skype 中将姓氏设置为空?

有没有办法last name field在 Skype 中将其设置为空?我尝试写入 last name textbox但是不起作用。

答案1

您应该打开页面(https://secure.skype.com/portal/profile),然后点击“编辑”按钮,然后打开本页面的源代码(使用firebug插件),然后找到如下输入标签:

<input id="lastname" class="requiredName maxlengthName minlengthName semibold error" type="text" data-current="" value="" data-tabindex="true" name="lastname" style="display: inline;" tabindex="14">

然后删除类的路径-requiredName 例如:

<input id="lastname" class="maxlengthName minlengthName semibold error" type="text" data-current="" value="" data-tabindex="true" name="lastname" style="display: inline;" tabindex="14">

然后删除您的姓氏并单击“保存”按钮。

相关内容