我想在文本中添加工具提示,例如,如果我有这样的代码:
<a href="http://google.com" title="The World's Largest Search Engine!">Google!</a>
Run Code Online (Sandbox Code Playgroud)
鼠标悬停时,我想显示该工具提示。使用title是一个好方法,但是如何设计才能看起来更好呢?任何帮助:
JSFIDDLE
我有一些像这样的字符串:
string1 = "123.123.This is a string some other numbers"
string2 = "1. This is a string some numbers"
string3 = "12-3-12.This is a string 123"
string4 = "123-12This is a string 1234"
Run Code Online (Sandbox Code Playgroud)
我需要从字符串的开头删除这些数字.我试过strip[start: end]方法,但由于字符串的不规则格式我不能使用它?有什么建议?