We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
虽然input设置了readonly;但是还是会呼出按键;所以把呼出的dom换成span或者其他的文本标签,然后修改finish函数中_self.trigger.value = provinceText + ((cityText)?(',' + cityText):(''))+ ((countyText)?(',' + countyText):(''));为_self.trigger.inneHTML = provinceText + ((cityText)?(',' + cityText):(''))+ ((countyText)?(',' + countyText):('')); 这样就避免了呼出时按键出现的情况
_self.trigger.value = provinceText + ((cityText)?(',' + cityText):(''))+ ((countyText)?(',' + countyText):(''));
_self.trigger.inneHTML = provinceText + ((cityText)?(',' + cityText):(''))+ ((countyText)?(',' + countyText):(''));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
虽然input设置了readonly;但是还是会呼出按键;所以把呼出的dom换成span或者其他的文本标签,然后修改finish函数中
_self.trigger.value = provinceText + ((cityText)?(',' + cityText):(''))+ ((countyText)?(',' + countyText):(''));
为_self.trigger.inneHTML = provinceText + ((cityText)?(',' + cityText):(''))+ ((countyText)?(',' + countyText):(''));
这样就避免了呼出时按键出现的情况
The text was updated successfully, but these errors were encountered: